Commit 35d43d78c0c26400f2162cf8a22e8c167b7667c8

henry 2001-10-28T04:06:09

Removed a couple of comments

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
diff --git a/src/FTGLBitmapFont.cpp b/src/FTGLBitmapFont.cpp
index fef372b..4136e0e 100755
--- a/src/FTGLBitmapFont.cpp
+++ b/src/FTGLBitmapFont.cpp
@@ -39,7 +39,6 @@ void FTGLBitmapFont::render( const char* string)
 {	
 	glPushClientAttrib( GL_CLIENT_PIXEL_STORE_BIT);
 	
-	// doing this every frame is a bad?
 	glPixelStorei( GL_UNPACK_LSB_FIRST, GL_FALSE);
 	glPixelStorei( GL_UNPACK_ROW_LENGTH, 0);
 	glPixelStorei( GL_UNPACK_ALIGNMENT, 1);
@@ -55,7 +54,6 @@ void FTGLBitmapFont::render( const wchar_t* string)
 {	
 	glPushClientAttrib( GL_CLIENT_PIXEL_STORE_BIT);
 	
-	// doing this every frame is a bad?
 	glPixelStorei( GL_UNPACK_LSB_FIRST, GL_FALSE);
 	glPixelStorei( GL_UNPACK_ROW_LENGTH, 0);
 	glPixelStorei( GL_UNPACK_ALIGNMENT, 1);