Searched refs:errorPos (Results 1 - 4 of 4) sorted by relevance
| /xsrc/external/mit/mesa-demos/dist/src/tests/ |
| H A D | arbgpuprog.c | 70 GLint errorPos; local in function:Init 109 glGetIntegerv(GL_PROGRAM_ERROR_POSITION_ARB, &errorPos); 110 if (glGetError() != GL_NO_ERROR || errorPos != -1) { 111 int l = FindLine(buf, errorPos); 112 printf("Vertex Program Error (pos=%d line=%d): %s\n", errorPos, l, 147 glGetIntegerv(GL_PROGRAM_ERROR_POSITION_ARB, &errorPos); 148 if (glGetError() != GL_NO_ERROR || errorPos != -1) { 149 int l = FindLine(buf, errorPos); 150 printf("Fragment Program Error (pos=%d line=%d): %s\n", errorPos, l,
|
| H A D | arraytexture.c | 220 int errorPos; local in function:compile_fragment_program 228 glGetIntegerv(GL_PROGRAM_ERROR_POSITION_ARB, &errorPos); 230 if (err != GL_NO_ERROR || errorPos != -1) { 231 int l = FindLine(prog, errorPos); 234 err, errorPos, l,
|
| /xsrc/external/mit/mesa-demos/dist/src/demos/ |
| H A D | arbfplight.c | 201 GLint errorPos; local in function:Init 287 glGetIntegerv(GL_PROGRAM_ERROR_POSITION_ARB, &errorPos); 288 if (glGetError() != GL_NO_ERROR || errorPos != -1) { 289 int l = FindLine(fragProgramText, errorPos); 290 printf("Fragment Program Error (pos=%d line=%d): %s\n", errorPos, l, 320 glGetIntegerv(GL_PROGRAM_ERROR_POSITION_ARB, &errorPos); 321 if (glGetError() != GL_NO_ERROR || errorPos != -1) { 322 int l = FindLine(vertProgramText, errorPos); 323 printf("Vertex Program Error (pos=%d line=%d): %s\n", errorPos, l,
|
| H A D | shadowtex.c | 851 GLint errorPos; local in function:compile_program 859 glGetIntegerv(GL_PROGRAM_ERROR_POSITION_ARB, &errorPos); 860 if (glGetError() != GL_NO_ERROR || errorPos != -1) { 861 int l = FindLine(code, errorPos); 862 printf("Fragment Program Error (pos=%d line=%d): %s\n", errorPos, l,
|
Completed in 7 milliseconds