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

12

  /external/mesa3d/src/mesa/drivers/dri/nouveau/
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/radeon/
radeon_tcl.c 383 if ( (ctx->Fog.FogCoordinateSource == GL_FOG_COORD) && ctx->Fog.Enabled ) {
  /external/mesa3d/src/mesa/swrast/
s_context.c 52 * stenciling, logic-op, fog, etc?).
167 * fog blend factors (from the fog coords) per-fragment.
175 (ctx->Hint.Fog == GL_NICEST &&
258 /* determine if fog is needed, and if so, which fog mode */
260 ctx->Fog.Enabled);
287 GLboolean separateSpecular = ctx->Fog.ColorSumEnabled ||
520 if (ctx->Fog.ColorSumEnabled ||
949 _mesa_debug(ctx, "fog %f\n", v->attrib[FRAG_ATTRIB_FOGC][0])
    [all...]
s_lines.c 117 /* Simple RGBA index line (no stipple, width=1, no Z, no fog, no tex)*/
124 /* Z, fog, wide, stipple RGBA line */
228 GLboolean specular = (ctx->Fog.ColorSumEnabled ||
247 /* no texture, but Z, fog, width>1, stipple, etc. */
s_aaline.c 485 || ctx->Fog.ColorSumEnabled
s_span.c 113 if (ctx->Light.Enabled || ctx->Fog.ColorSumEnabled)
120 /* fog */
125 /* fog blend factors will be computed from fog coordinates per pixel */
129 /* fog blend factor should be computed from fogcoord now */
    [all...]
  /external/mesa3d/src/mesa/main/
attrib.c 40 #include "fog.h"
80 GLboolean Fog;
273 attr->Fog = ctx->Fog.Enabled;
343 memcpy( attr, &ctx->Fog, sizeof(struct gl_fog_attrib) );
526 TEST_AND_UPDATE(ctx->Fog.Enabled, enable->Fog, GL_FOG);
1025 const struct gl_fog_attrib *fog; local
    [all...]
enable.c 371 if (ctx->Fog.Enabled == state)
374 ctx->Fog.Enabled = state;
760 if (ctx->Fog.ColorSumEnabled == state)
763 ctx->Fog.ColorSumEnabled = state;
    [all...]
get.c 584 { GL_FOG, CONTEXT_BOOL(Fog.Enabled), NO_EXTRA },
586 { GL_FOG_DENSITY, CONTEXT_FLOAT(Fog.Density), NO_EXTRA },
587 { GL_FOG_END, CONTEXT_FLOAT(Fog.End), NO_EXTRA },
588 { GL_FOG_HINT, CONTEXT_ENUM(Hint.Fog), NO_EXTRA },
589 { GL_FOG_MODE, CONTEXT_ENUM(Fog.Mode), NO_EXTRA },
590 { GL_FOG_START, CONTEXT_FLOAT(Fog.Start), NO_EXTRA },
    [all...]
ff_fragment_shader.cpp 88 if (ctx->Fog.ColorSumEnabled)
490 if (ctx->Fog.Enabled) {
492 key->fog_mode = translate_fog_mode(ctx->Fog.Mode);
    [all...]
rastpos.c 245 if (ctx->Fog.FogCoordinateSource == GL_FOG_COORDINATE_EXT)
context.c 98 #include "fog.h"
    [all...]
ffvertex_prog.c 224 if (ctx->Fog.FogCoordinateSource == GL_FRAGMENT_DEPTH_EXT) {
226 key->fog_distance_mode = translate_fog_distance_mode(ctx->Fog.FogDistanceMode);
1312 struct ureg fog = register_output(p, VERT_RESULT_FOGC); local
    [all...]
mtypes.h 889 * Fog attribute group (GL_FOG_BIT).
893 GLboolean Enabled; /**< Fog enabled flag */
894 GLfloat ColorUnclamped[4]; /**< Fog color */
895 GLfloat Color[4]; /**< Fog color */
899 GLfloat Index; /**< Fog index */
900 GLenum Mode; /**< Fog mode */
919 GLenum Fog;
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i915/
i830_state.c 737 * Fog
747 GLuint color = (((GLubyte) (ctx->Fog.Color[0] * 255.0F) << 16) |
748 ((GLubyte) (ctx->Fog.Color[1] * 255.0F) << 8) |
749 ((GLubyte) (ctx->Fog.Color[2] * 255.0F) << 0));
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/r200/
r200_swtcl.c 817 * Incorporate FOG into RGBA
819 if (ctx->Fog.Enabled) {
820 const GLfloat *fc = ctx->Fog.Color;
824 if (ctx->Fog.FogCoordinateSource == GL_FOG_COORDINATE_EXT)
r200_state_init.c 262 TCL_CHECK( tcl_fog_add4, ctx->Fog.Enabled, 4 )
711 ALLOC_STATE( fog, tcl_fog_add4, FOG_STATE_SIZE, "FOG/fog", 0 );
    [all...]
r200_vertprog.c 416 vp->fogmode = ctx->Fog.Mode;
611 normal, fog, secondary color. Crazy?
    [all...]
  /external/mesa3d/src/mesa/tnl/
t_rasterpos.c 428 if (ctx->Fog.FogCoordinateSource == GL_FOG_COORDINATE_EXT)
t_vb_program.c 428 /* Fixup fog and point size results if needed */
430 if (ctx->Fog.Enabled &&
  /external/mesa3d/src/mesa/drivers/common/
meta.c 108 GLboolean Fog;
559 save->Fog = ctx->Fog.Enabled;
560 if (ctx->Fog.Enabled)
889 _mesa_set_enable(ctx, GL_FOG, save->Fog);
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/shaders/
DefaultShader.java     [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_cb_drawpixels.c     [all...]
  /external/robolectric/v1/lib/main/
h2-1.2.147.jar 

Completed in 1338 milliseconds

12