Home
last modified time | relevance | path

Searched refs:Lightfv (Results 1 – 14 of 14) sorted by relevance

/external/mesa3d/src/mesa/drivers/dri/radeon/
Dradeon_state_init.c878 ctx->Driver.Lightfv( ctx, p, GL_AMBIENT, l->Ambient ); in radeonInitState()
879 ctx->Driver.Lightfv( ctx, p, GL_DIFFUSE, l->Diffuse ); in radeonInitState()
880 ctx->Driver.Lightfv( ctx, p, GL_SPECULAR, l->Specular ); in radeonInitState()
881 ctx->Driver.Lightfv( ctx, p, GL_POSITION, NULL ); in radeonInitState()
882 ctx->Driver.Lightfv( ctx, p, GL_SPOT_DIRECTION, NULL ); in radeonInitState()
883 ctx->Driver.Lightfv( ctx, p, GL_SPOT_EXPONENT, &l->SpotExponent ); in radeonInitState()
884 ctx->Driver.Lightfv( ctx, p, GL_SPOT_CUTOFF, &l->SpotCutoff ); in radeonInitState()
885 ctx->Driver.Lightfv( ctx, p, GL_CONSTANT_ATTENUATION, in radeonInitState()
887 ctx->Driver.Lightfv( ctx, p, GL_LINEAR_ATTENUATION, in radeonInitState()
889 ctx->Driver.Lightfv( ctx, p, GL_QUADRATIC_ATTENUATION, in radeonInitState()
Dradeon_state.c2153 ctx->Driver.Lightfv = radeonLightfv; in radeonInitStateFuncs()
/external/mesa3d/src/mesa/drivers/dri/r200/
Dr200_state_init.c1224 ctx->Driver.Lightfv( ctx, p, GL_AMBIENT, l->Ambient ); in r200InitState()
1225 ctx->Driver.Lightfv( ctx, p, GL_DIFFUSE, l->Diffuse ); in r200InitState()
1226 ctx->Driver.Lightfv( ctx, p, GL_SPECULAR, l->Specular ); in r200InitState()
1227 ctx->Driver.Lightfv( ctx, p, GL_POSITION, NULL ); in r200InitState()
1228 ctx->Driver.Lightfv( ctx, p, GL_SPOT_DIRECTION, NULL ); in r200InitState()
1229 ctx->Driver.Lightfv( ctx, p, GL_SPOT_EXPONENT, &l->SpotExponent ); in r200InitState()
1230 ctx->Driver.Lightfv( ctx, p, GL_SPOT_CUTOFF, &l->SpotCutoff ); in r200InitState()
1231 ctx->Driver.Lightfv( ctx, p, GL_CONSTANT_ATTENUATION, in r200InitState()
1233 ctx->Driver.Lightfv( ctx, p, GL_LINEAR_ATTENUATION, in r200InitState()
1235 ctx->Driver.Lightfv( ctx, p, GL_QUADRATIC_ATTENUATION, in r200InitState()
Dr200_state.c2398 functions->Lightfv = r200Lightfv; in r200InitStateFuncs()
/external/mesa3d/src/glx/tests/
Denum_sizes.cpp112 TEST(ValidEnumSizes, Lightfv) in TEST() argument
126 TEST(InvalidEnumSizes, Lightfv) in TEST() argument
/external/mesa3d/src/mesa/drivers/common/
Ddriverfuncs.c139 driver->Lightfv = NULL; in _mesa_init_driver_functions()
/external/mesa3d/src/mesa/main/
Dlight.c192 if (ctx->Driver.Lightfv) in _mesa_light()
193 ctx->Driver.Lightfv( ctx, GL_LIGHT0 + lnum, pname, params ); in _mesa_light()
Ddd.h542 void (*Lightfv)(struct gl_context *ctx, GLenum light, member
/external/mesa3d/src/mesa/drivers/dri/nouveau/
Dnouveau_state.c525 ctx->Driver.Lightfv = nouveau_light; in nouveau_state_init()
/external/swiftshader/src/OpenGL/libGLES_CM/
Dmain.cpp252 void Lightfv(GLenum light, GLenum pname, const GLfloat *params);
1030 return es1::Lightfv(light, pname, params); in glLightfv()
1517 this->glLightfv = es1::Lightfv; in LibGLES_CMexports()
DlibGLES_CM.cpp2740 void Lightfv(GLenum light, GLenum pname, const GLfloat *params) in Lightfv() function
/external/mesa3d/src/gallium/state_trackers/wgl/
Dstw_icd.h210 void (GLAPIENTRY * Lightfv)(GLenum, GLenum, const GLfloat *);
/external/mesa3d/src/mapi/glapi/tests/
Dcheck_table.cpp724 { "glLightfv", _O(Lightfv) },
/external/mesa3d/include/GL/
Dgl_mangle.h1218 #define glLightfv MANGLE(Lightfv)