Functions | |
| void | parameter (unsigned int, const float *) |
| void | parameter (unsigned int, float, float, float, float) |
| void | parameter (unsigned int, const Color &) |
| void | parameter (unsigned int, const Point3f &) |
| void | parameter (unsigned int, const Vec3f &) |
|
||||||||||||
|
Definition at line 365 of file vertexprog.cpp. References GL_VERTEX_PROGRAM_ARB, and glx::glProgramEnvParameter4fvARB. 00366 {
00367 glx::glProgramEnvParameter4fvARB(GL_VERTEX_PROGRAM_ARB, param, fv);
00368 }
|
|
||||||||||||||||||||||||
|
Definition at line 360 of file vertexprog.cpp. References GL_VERTEX_PROGRAM_ARB, and glx::glProgramEnvParameter4fARB. 00361 {
00362 glx::glProgramEnvParameter4fARB(GL_VERTEX_PROGRAM_ARB, param, x, y, z, w);
00363 }
|
|
||||||||||||
|
Definition at line 354 of file vertexprog.cpp. References GL_VERTEX_PROGRAM_ARB, and glx::glProgramEnvParameter4fARB. 00355 {
00356 glx::glProgramEnvParameter4fARB(GL_VERTEX_PROGRAM_ARB, param,
00357 c.red(), c.green(), c.blue(), c.alpha());
00358 }
|
|
||||||||||||
|
Definition at line 348 of file vertexprog.cpp. References GL_VERTEX_PROGRAM_ARB, and glx::glProgramEnvParameter4fARB. 00349 {
00350 glx::glProgramEnvParameter4fARB(GL_VERTEX_PROGRAM_ARB, param,
00351 p.x, p.y, p.z, 0.0f);
00352 }
|
|
||||||||||||
|
Definition at line 342 of file vertexprog.cpp. References GL_VERTEX_PROGRAM_ARB, and glx::glProgramEnvParameter4fARB. 00343 {
00344 glx::glProgramEnvParameter4fARB(GL_VERTEX_PROGRAM_ARB, param,
00345 v.x, v.y, v.z, 0.0f);
00346 }
|
1.4.1