HomeSort by relevance Sort by last modified time
    Searched refs:Fog (Results 26 - 50 of 91) sorted by null

12 3 4

  /external/mesa3d/src/mesa/program/
program_parser.h 204 unsigned Fog:2;
arbprogparse.c 44 + a state variable, like "state.fog.color", or
133 /* Append fog instructions now if the program has "OPTION ARB_fog_exp"
135 * there's no hardware that wants to do fog in a discrete stage separate
138 if (state.option.Fog != OPTION_NONE) {
146 _mesa_append_fog_code(ctx, program, fog_modes[state.option.Fog], GL_TRUE);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/
r200_state.c 372 * Fog
383 c.i = rmesa->hw.fog.cmd[FOG_C];
384 d.i = rmesa->hw.fog.cmd[FOG_D];
388 if (!ctx->Fog.Enabled)
392 switch (ctx->Fog.Mode) {
395 if (ctx->Fog.Start == ctx->Fog.End) {
400 c.f = ctx->Fog.End/(ctx->Fog.End-ctx->Fog.Start)
453 GLuint fog = rmesa->hw.ctx.cmd[CTX_PP_FOG_COLOR]; local
    [all...]
r200_tcl.c 364 /* use hw fixed order for simplicity, pos 0, weight 1, normal 2, fog 3,
409 if ( (ctx->Fog.FogCoordinateSource == GL_FOG_COORD) && ctx->Fog.Enabled ) {
563 (ctx->Fog.FogCoordinateSource == GL_FOG_COORD )) {
  /external/mesa3d/src/mesa/drivers/dri/r200/
r200_state.c 372 * Fog
383 c.i = rmesa->hw.fog.cmd[FOG_C];
384 d.i = rmesa->hw.fog.cmd[FOG_D];
388 if (!ctx->Fog.Enabled)
392 switch (ctx->Fog.Mode) {
395 if (ctx->Fog.Start == ctx->Fog.End) {
400 c.f = ctx->Fog.End/(ctx->Fog.End-ctx->Fog.Start)
453 GLuint fog = rmesa->hw.ctx.cmd[CTX_PP_FOG_COLOR]; local
    [all...]
r200_tcl.c 364 /* use hw fixed order for simplicity, pos 0, weight 1, normal 2, fog 3,
409 if ( (ctx->Fog.FogCoordinateSource == GL_FOG_COORD) && ctx->Fog.Enabled ) {
563 (ctx->Fog.FogCoordinateSource == GL_FOG_COORD )) {
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
nv10_state_tnl.c 106 struct gl_fog_attrib *f = &ctx->Fog;
136 struct gl_fog_attrib *f = &ctx->Fog;
209 (!ctx->Light.Enabled && ctx->Fog.ColorSumEnabled ?
446 if (ctx->Light._NeedEyeCoords || ctx->Fog.Enabled ||
nouveau_vbo_t.c 171 if (ctx->Fog.ColorSumEnabled && !ctx->Light.Enabled)
179 if (ctx->Fog.Enabled && ctx->Fog.FogCoordinateSource == GL_FOG_COORD)
nv10_state_frag.c 341 if (ctx->Fog.ColorSumEnabled || ctx->Light.Enabled) {
346 if (ctx->Fog.Enabled) {
347 INPUT_SRC(&rc, A, FOG, ALPHA);
348 INPUT_SRC(&rc, C, FOG, RGB);
349 INPUT_SRC(&rc, E, FOG, ALPHA);
nv20_state_tnl.c 155 struct gl_fog_attrib *f = &ctx->Fog;
342 if (ctx->Light._NeedEyeCoords || ctx->Fog.Enabled ||
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nv10_state_tnl.c 106 struct gl_fog_attrib *f = &ctx->Fog;
136 struct gl_fog_attrib *f = &ctx->Fog;
209 (!ctx->Light.Enabled && ctx->Fog.ColorSumEnabled ?
446 if (ctx->Light._NeedEyeCoords || ctx->Fog.Enabled ||
nouveau_vbo_t.c 171 if (ctx->Fog.ColorSumEnabled && !ctx->Light.Enabled)
179 if (ctx->Fog.Enabled && ctx->Fog.FogCoordinateSource == GL_FOG_COORD)
nv10_state_frag.c 341 if (ctx->Fog.ColorSumEnabled || ctx->Light.Enabled) {
346 if (ctx->Fog.Enabled) {
347 INPUT_SRC(&rc, A, FOG, ALPHA);
348 INPUT_SRC(&rc, C, FOG, RGB);
349 INPUT_SRC(&rc, E, FOG, ALPHA);
nv20_state_tnl.c 155 struct gl_fog_attrib *f = &ctx->Fog;
342 if (ctx->Light._NeedEyeCoords || ctx->Fog.Enabled ||
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
arbprogparse.c 44 + a state variable, like "state.fog.color", or
133 /* Append fog instructions now if the program has "OPTION ARB_fog_exp"
135 * there's no hardware that wants to do fog in a discrete stage separate
138 if (state.option.Fog != OPTION_NONE) {
146 _mesa_append_fog_code(ctx, program, fog_modes[state.option.Fog], GL_TRUE);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_state.c 311 * Fog
323 if (!ctx->Fog.Enabled)
327 switch (ctx->Fog.Mode) {
344 if (!ctx->Fog.Enabled)
346 c.i = rmesa->hw.fog.cmd[FOG_C];
347 d.i = rmesa->hw.fog.cmd[FOG_D];
348 switch (ctx->Fog.Mode) {
351 /* While this is the opposite sign from the DDK, it makes the fog test
354 d.f = -ctx->Fog.Density;
358 d.f = -(ctx->Fog.Density * ctx->Fog.Density)
    [all...]
radeon_maos_verts.c 67 #define DO_FOG ((IND & RADEON_CP_VC_FRMT_PKSPEC) && ctx->Fog.Enabled && \
68 (ctx->Fog.FogCoordinateSource == GL_FOG_COORD))
radeon_state_init.c 212 CHECK( fog_add4, ctx->Fog.Enabled, 4 )
234 TCL_CHECK( tcl_eyespace_or_fog_add4, ctx->_NeedEyeCoords || ctx->Fog.Enabled, 4 )
544 ALLOC_STATE( fog, fog_add4, FOG_STATE_SIZE, "FOG/fog", 1 );
620 rmesa->hw.fog.cmd[FOG_CMD_0] =
649 rmesa->hw.fog.emit = vec_emit;
673 /* this bit unused for vertex fog */
    [all...]
radeon_tcl.c 383 if ( (ctx->Fog.FogCoordinateSource == GL_FOG_COORD) && ctx->Fog.Enabled ) {
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_state.c 311 * Fog
323 if (!ctx->Fog.Enabled)
327 switch (ctx->Fog.Mode) {
344 if (!ctx->Fog.Enabled)
346 c.i = rmesa->hw.fog.cmd[FOG_C];
347 d.i = rmesa->hw.fog.cmd[FOG_D];
348 switch (ctx->Fog.Mode) {
351 /* While this is the opposite sign from the DDK, it makes the fog test
354 d.f = -ctx->Fog.Density;
358 d.f = -(ctx->Fog.Density * ctx->Fog.Density)
    [all...]
radeon_maos_verts.c 67 #define DO_FOG ((IND & RADEON_CP_VC_FRMT_PKSPEC) && ctx->Fog.Enabled && \
68 (ctx->Fog.FogCoordinateSource == GL_FOG_COORD))
radeon_state_init.c 212 CHECK( fog_add4, ctx->Fog.Enabled, 4 )
234 TCL_CHECK( tcl_eyespace_or_fog_add4, ctx->_NeedEyeCoords || ctx->Fog.Enabled, 4 )
544 ALLOC_STATE( fog, fog_add4, FOG_STATE_SIZE, "FOG/fog", 1 );
620 rmesa->hw.fog.cmd[FOG_CMD_0] =
649 rmesa->hw.fog.emit = vec_emit;
673 /* this bit unused for vertex fog */
    [all...]
radeon_tcl.c 383 if ( (ctx->Fog.FogCoordinateSource == GL_FOG_COORD) && ctx->Fog.Enabled ) {
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
intel_pixel_copy.c 61 ctx->Fog.Enabled ||
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_pixel_copy.c 61 ctx->Fog.Enabled ||

Completed in 221 milliseconds

12 3 4