summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/glean/tfbo.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/glean/tfbo.cpp b/src/glean/tfbo.cpp
index 591e78d..f24fe7f 100644
--- a/src/glean/tfbo.cpp
+++ b/src/glean/tfbo.cpp
@@ -674,8 +674,8 @@ FBOTest::testRender2SingleTexture(void)
switch (textureModes[mode]) {
case GL_TEXTURE_1D:
glBegin(GL_LINES);
- glVertex3f(TEXSIZE / 4, 0, 0.3);
- glVertex3f(TEXSIZE * 5 / 8, 0, 0.3);
+ glVertex3f(TEXSIZE / 4, 0.5, 0.3);
+ glVertex3f(TEXSIZE * 5 / 8, 0.5, 0.3);
glEnd();
break;
case GL_TEXTURE_2D:
@@ -704,8 +704,8 @@ FBOTest::testRender2SingleTexture(void)
switch (textureModes[mode]) {
case GL_TEXTURE_1D:
glBegin(GL_LINES);
- glVertex3f(TEXSIZE / 2, 0, 0.3);
- glVertex3f(TEXSIZE * 7 / 8, 0, 0.3);
+ glVertex3f(TEXSIZE / 2, 0.5, 0.3);
+ glVertex3f(TEXSIZE * 7 / 8, 0.5, 0.3);
glEnd();
break;
case GL_TEXTURE_2D:
@@ -735,8 +735,8 @@ FBOTest::testRender2SingleTexture(void)
switch (textureModes[mode]) {
case GL_TEXTURE_1D:
glBegin(GL_LINES);
- glVertex3f(0, 0, 0.2);
- glVertex3f(TEXSIZE, 0, 0.2);
+ glVertex3f(0, 0.5, 0.2);
+ glVertex3f(TEXSIZE, 0.5, 0.2);
glEnd();
break;
case GL_TEXTURE_2D: