diff options
author | Brian Paul <[email protected]> | 2006-04-21 01:01:58 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2006-04-21 01:01:58 +0000 |
commit | 8743d00571bbc4f4ec47afdc713a10b1b25b6dd6 (patch) | |
tree | 8664f9e40f967ccfb6d61b8b0376ab12b87f35cc /progs | |
parent | 34ba50522a843f52060e2b554e07f7dc7da8413a (diff) |
s/NV/ARB/
Diffstat (limited to 'progs')
-rw-r--r-- | progs/tests/arbvptest1.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/progs/tests/arbvptest1.c b/progs/tests/arbvptest1.c index 5c462c42c7f..0ebd3987f58 100644 --- a/progs/tests/arbvptest1.c +++ b/progs/tests/arbvptest1.c @@ -1,4 +1,4 @@ -/* Test glGenProgramsNV(), glIsProgramNV(), glLoadProgramNV() */ +/* Test glGenProgramsARB(), glIsProgramARB(), glLoadProgramARB() */ #include <assert.h> #include <string.h> @@ -15,9 +15,9 @@ static void Display( void ) glPushMatrix(); glBegin(GL_POLYGON); - glVertexAttrib2fNV(0, -1, -1); - glVertexAttrib2fNV(0, 1, -1); - glVertexAttrib2fNV(0, 0, 1); + glVertexAttrib2fARB(0, -1, -1); + glVertexAttrib2fARB(0, 1, -1); + glVertexAttrib2fARB(0, 0, 1); glEnd(); glPopMatrix(); @@ -139,7 +139,7 @@ static void Init( void ) "DP4 result.position, R3, blah[A0.x - 4];\n" "END\n"; - glGenProgramsNV(4, prognum); + glGenProgramsARB(4, prognum); load_program(prog1, prognum[0]); load_program(prog2, prognum[1]); |