Searched refs:fog (Results 1 - 25 of 84) sorted by relevance

1234

/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/r300/
H A Dr300_shader_semantics.h43 int fog; member in struct:r300_shader_semantics
57 info->fog = ATTR_UNUSED;
H A Dr300_vs.c80 vs_outputs->fog = i;
165 if (outputs->fog != ATTR_UNUSED) {
166 c->code->outputs[outputs->fog] = reg++;
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r300/
H A Dr300_shader_semantics.h43 int fog; member in struct:r300_shader_semantics
57 info->fog = ATTR_UNUSED;
H A Dr300_vs.c80 vs_outputs->fog = i;
165 if (outputs->fog != ATTR_UNUSED) {
166 c->code->outputs[outputs->fog] = reg++;
/xsrc/external/mit/mesa-demos/dist/src/samples/
H A DMakefile.am44 fog \
/xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/nouveau/
H A Dnv04_context.h48 uint32_t fog; member in struct:nv04_context
H A Dnv04_state_raster.c226 nv04->fog = pack_rgba_f(MESA_FORMAT_B8G8R8A8_UNORM, ctx->Fog.Color);
/xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/nouveau/
H A Dnv04_context.h48 uint32_t fog; member in struct:nv04_context
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/i915/
H A Di915_state_derived.c61 boolean texCoords[I915_TEX_UNITS], colors[2], fog, needW, face; local in function:calculate_vertex_layout
66 colors[0] = colors[1] = fog = needW = face = FALSE;
94 fog = TRUE;
136 /* fog coord, not fog blend factor */
137 if (fog) {
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/i915/
H A Di915_state_derived.c49 bool colors[2], fog, needW, face; local in function:calculate_vertex_layout
53 colors[0] = colors[1] = fog = needW = face = false;
75 fog = true;
119 /* fog coord, not fog blend factor */
120 if (fog) {
/xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/radeon/
H A Dradeon_maos_vbtmp.h45 GLfloat (*fog)[4]; local in function:TAG
146 fog = VB->AttribPtr[_TNL_ATTRIB_FOG]->data;
149 fog = (GLfloat (*)[4])ctx->Current.Attrib[VERT_ATTRIB_FOG];
170 STRIDE_4F(fog, start * fog_stride);
211 UNCLAMPED_FLOAT_TO_UBYTE(v[0].rgba.alpha, radeonComputeFogBlendFactor(ctx, fog[0][0]));
212 STRIDE_4F(fog, fog_stride);
/xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/radeon/
H A Dradeon_maos_vbtmp.h45 GLfloat (*fog)[4]; local in function:TAG
146 fog = VB->AttribPtr[_TNL_ATTRIB_FOG]->data;
149 fog = (GLfloat (*)[4])ctx->Current.Attrib[VERT_ATTRIB_FOG];
170 STRIDE_4F(fog, start * fog_stride);
211 UNCLAMPED_FLOAT_TO_UBYTE(v[0].rgba.alpha, radeonComputeFogBlendFactor(ctx, fog[0][0]));
212 STRIDE_4F(fog, fog_stride);
/xsrc/external/mit/mesa-demos/dist/src/redbook/
H A DMakefile.am57 fog \
/xsrc/external/mit/MesaLib/dist/src/compiler/glsl/
H A Dopt_dead_builtin_varyings.cpp30 * The varyings handled here are the primary and secondary color, the fog,
76 fog(NULL),
178 /* Handle colors and fog. */
197 this->fog = var;
261 ir_variable *fog; member in class:__anon112a57600110::varying_info_visitor
317 * fog outputs.
342 info->fog) {
410 /* Replace set-but-unused color and fog outputs with dummy variables. */
421 if (var == this->info->fog && this->new_fog) {
464 /* Replace set-but-unused color and fog output
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/
H A Dopt_dead_builtin_varyings.cpp30 * The varyings handled here are the primary and secondary color, the fog,
76 fog(NULL),
178 /* Handle colors and fog. */
197 this->fog = var;
261 ir_variable *fog; member in class:__anon4cdfd2ed0110::varying_info_visitor
317 * fog outputs.
342 info->fog) {
410 /* Replace set-but-unused color and fog outputs with dummy variables. */
421 if (var == this->info->fog && this->new_fog) {
464 /* Replace set-but-unused color and fog output
[all...]
/xsrc/external/mit/mesa-demos/dist/src/demos/
H A Dtunnel.c62 static int fog = 1; variable in typeref:typename:int
241 fog = (!fog);
401 if (fog)
H A Dtunnel2.c58 static int fog = 1; variable in typeref:typename:int
247 fog = (!fog);
424 if (fog)
H A Dfire.c128 static int fog = 1; variable in typeref:typename:int
405 if (fog)
437 /* Subdivide the ground into a bunch of quads. This improves fog
590 fog = (!fog);
H A Dipers.c60 static int fog = 1; variable in typeref:typename:int
296 fog = (!fog);
584 if (fog)
H A Dteapot.c59 static int fog=1; variable in typeref:typename:int
207 fog=(!fog);
438 if(fog)
H A Dterrain.c55 static int fog = 1; variable in typeref:typename:int
376 if (fog)
466 fog = (!fog);
/xsrc/external/mit/mesa-demos/dist/src/trivial/
H A DMakefile.am149 tri-fog \
178 tri-unfilled-fog \
/xsrc/external/mit/MesaLib/dist/docs/relnotes/
H A D6.4.1.rst27 - fragment program fog option didn't work with glDrawPixels, glBitmap
H A D7.0.rst30 - Fixed a few fog-related bugs.
/xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/
H A Dst_atifs_to_nir.c426 * plus the optimized fog state.
485 if (key->fog) {
490 /* compute the 1 component fog factor f */
492 if (key->fog == FOG_LINEAR) {
496 } else if (key->fog == FOG_EXP) {
503 } else if (key->fog == FOG_EXP2) {
595 /* we may need fog */
598 /* we always have the ATI_fs constants, and the fog params */

Completed in 21 milliseconds

1234