HomeSort by: relevance | last modified time | path
    Searched defs:texcoord (Results 1 - 25 of 35) sorted by relevancy

1 2

  /xsrc/external/mit/MesaLib/dist/src/mesa/tnl/
t_vb_texmat.c 48 GLvector4f texcoord[MAX_TEXTURE_COORD_UNITS]; member in struct:texmat_stage_data
70 (void) TransformRaw( &store->texcoord[i],
74 VB->AttribPtr[VERT_ATTRIB_TEX0+i] = &store->texcoord[i];
97 _mesa_vector4f_alloc( &store->texcoord[i], 0, VB->Size, 32 );
110 if (store->texcoord[i].data)
111 _mesa_vector4f_free( &store->texcoord[i] );
t_vb_texgen.c 75 GLvector4f texcoord[MAX_TEXTURE_COORD_UNITS]; member in struct:texgen_stage_data
171 * (f). This allows us to pass in either a texcoord vector4f, or a
256 GLvector4f *out = &store->texcoord[unit];
278 GLvector4f *out = &store->texcoord[unit];
280 GLfloat (*texcoord)[4] = (GLfloat (*)[4])out->start;
286 texcoord[i][0] = norm[0];
287 texcoord[i][1] = norm[1];
288 texcoord[i][2] = norm[2];
306 GLvector4f *out = &store->texcoord[unit];
307 GLfloat (*texcoord)[4] = (GLfloat (*)[4]) out->start
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/tnl/
t_vb_texmat.c 48 GLvector4f texcoord[MAX_TEXTURE_COORD_UNITS]; member in struct:texmat_stage_data
70 (void) TransformRaw( &store->texcoord[i],
74 VB->AttribPtr[VERT_ATTRIB_TEX0+i] = &store->texcoord[i];
97 _mesa_vector4f_alloc( &store->texcoord[i], 0, VB->Size, 32 );
110 if (store->texcoord[i].data)
111 _mesa_vector4f_free( &store->texcoord[i] );
t_vb_texgen.c 75 GLvector4f texcoord[MAX_TEXTURE_COORD_UNITS]; member in struct:texgen_stage_data
171 * (f). This allows us to pass in either a texcoord vector4f, or a
256 GLvector4f *out = &store->texcoord[unit];
278 GLvector4f *out = &store->texcoord[unit];
280 GLfloat (*texcoord)[4] = (GLfloat (*)[4])out->start;
286 texcoord[i][0] = norm[0];
287 texcoord[i][1] = norm[1];
288 texcoord[i][2] = norm[2];
306 GLvector4f *out = &store->texcoord[unit];
307 GLfloat (*texcoord)[4] = (GLfloat (*)[4]) out->start
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/compiler/nir/
nir_lower_bitmap.c 58 nir_variable *texcoord = local
62 if (texcoord == NULL) {
63 texcoord = nir_variable_create(shader,
67 texcoord->data.location = VARYING_SLOT_TEX0;
70 return texcoord;
77 nir_ssa_def *texcoord; local
81 texcoord = nir_load_var(b, get_texcoord(shader));
105 nir_src_for_ssa(nir_channels(b, texcoord,
nir_lower_drawpixels.c 38 nir_variable *texcoord, *texcoord_const, *scale, *bias, *tex, *pixelmap; member in struct:__anon787
44 if (state->texcoord == NULL) {
45 nir_variable *texcoord = NULL; local
50 texcoord = var;
56 if (texcoord == NULL) {
57 texcoord = nir_variable_create(state->shader,
61 texcoord->data.location = VARYING_SLOT_TEX0;
64 state->texcoord = texcoord;
66 return nir_load_var(&state->b, state->texcoord);
119 nir_ssa_def *texcoord; local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/compiler/nir/
nir_lower_bitmap.c 58 nir_variable *texcoord = NULL; local
63 texcoord = var;
69 if (texcoord == NULL) {
70 texcoord = nir_variable_create(shader,
74 texcoord->data.location = VARYING_SLOT_TEX0;
77 return texcoord;
84 nir_ssa_def *texcoord; local
89 texcoord = nir_load_var(b, get_texcoord(shader));
113 nir_src_for_ssa(nir_channels(b, texcoord,
nir_lower_drawpixels.c 38 nir_variable *texcoord, *scale, *bias, *tex, *pixelmap; member in struct:__anon3406
44 if (state->texcoord == NULL) {
45 nir_variable *texcoord = NULL; local
50 texcoord = var;
56 if (texcoord == NULL) {
57 texcoord = nir_variable_create(state->shader,
61 texcoord->data.location = VARYING_SLOT_TEX0;
64 state->texcoord = texcoord;
66 return nir_load_var(&state->b, state->texcoord);
118 nir_ssa_def *texcoord; local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/
st_cb_feedback.c 89 const GLfloat *color, *texcoord; local
102 * color and texcoord attribs to use here.
113 texcoord = v->data[slot];
115 texcoord = ctx->Current.Attrib[VERT_ATTRIB_TEX0];
117 _mesa_feedback_vertex(ctx, win, color, texcoord);
st_pbo.c 483 nir_ssa_def *texcoord; local
485 texcoord = nir_f2i32(&b, nir_channels(&b, coord, TGSI_WRITEMASK_XY));
489 texcoord = nir_swizzle(&b, texcoord, &sw, 1);
507 texcoord = nir_vec2(&b, nir_channel(&b, texcoord, 0),
510 texcoord = nir_vec3(&b, nir_channel(&b, texcoord, 0),
511 nir_channel(&b, texcoord, 1),
516 texcoord = pbo_addr
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/state_tracker/
st_cb_feedback.c 88 const GLfloat *color, *texcoord; local
101 * color and texcoord attribs to use here.
112 texcoord = v->data[slot];
114 texcoord = ctx->Current.Attrib[VERT_ATTRIB_TEX0];
116 _mesa_feedback_vertex(ctx, win, color, texcoord);
  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/nir/
nir_draw_helpers.c 70 nir_ssa_def *texcoord; local
76 texcoord = nir_fmul(b, nir_channels(b, frag_coord, 0x3),
87 tex->src[0].src = nir_src_for_ssa(texcoord);
  /xsrc/external/mit/MesaLib/dist/src/gallium/tests/graw/
fs-test.c 54 float texcoord[4]; member in struct:vertex
171 ve[2].src_offset = Offset(struct vertex, texcoord);
gs-test.c 58 float texcoord[4]; member in struct:vertex
229 ve[2].src_offset = Offset(struct vertex, texcoord);
  /xsrc/external/mit/MesaLib/dist/src/mesa/main/
eval.c 920 static GLfloat texcoord[4] = { 0.0, 0.0, 0.0, 1.0 }; local
927 init_1d_map( &ctx->EvalMap.Map1Texture1, 1, texcoord );
928 init_1d_map( &ctx->EvalMap.Map1Texture2, 2, texcoord );
929 init_1d_map( &ctx->EvalMap.Map1Texture3, 3, texcoord );
930 init_1d_map( &ctx->EvalMap.Map1Texture4, 4, texcoord );
937 init_2d_map( &ctx->EvalMap.Map2Texture1, 1, texcoord );
938 init_2d_map( &ctx->EvalMap.Map2Texture2, 2, texcoord );
939 init_2d_map( &ctx->EvalMap.Map2Texture3, 3, texcoord );
940 init_2d_map( &ctx->EvalMap.Map2Texture4, 4, texcoord );
  /xsrc/external/mit/MesaLib/dist/src/mesa/program/
prog_execute.c 296 const GLfloat texcoord[4], GLfloat lodBias,
308 machine->FetchTexelDeriv(ctx, texcoord,
314 machine->FetchTexelLod(ctx, texcoord, lodBias, unit, color);
1069 GLfloat texcoord[4], color[4]; local
1070 fetch_vector4(&inst->SrcReg[0], machine, texcoord);
1072 /* For TEX, texcoord.Q should not be used and its value should not
1075 * which is effectively what happens when the texcoord swizzle
1078 texcoord[3] = 1.0f;
1080 fetch_texel(ctx, machine, inst, texcoord, 0.0, color);
1086 texcoord[0], texcoord[1], texcoord[2], texcoord[3])
1094 GLfloat texcoord[4], color[4], lodBias; local
1121 GLfloat texcoord[4], dtdx[4], dtdy[4], color[4]; local
1134 GLfloat texcoord[4], color[4], lod; local
1150 GLfloat texcoord[4], color[4]; local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/tests/graw/
fs-test.c 54 float texcoord[4]; member in struct:vertex
166 ve[2].src_offset = Offset(struct vertex, texcoord);
gs-test.c 58 float texcoord[4]; member in struct:vertex
224 ve[2].src_offset = Offset(struct vertex, texcoord);
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/main/
eval.c 917 static GLfloat texcoord[4] = { 0.0, 0.0, 0.0, 1.0 }; local
924 init_1d_map( &ctx->EvalMap.Map1Texture1, 1, texcoord );
925 init_1d_map( &ctx->EvalMap.Map1Texture2, 2, texcoord );
926 init_1d_map( &ctx->EvalMap.Map1Texture3, 3, texcoord );
927 init_1d_map( &ctx->EvalMap.Map1Texture4, 4, texcoord );
934 init_2d_map( &ctx->EvalMap.Map2Texture1, 1, texcoord );
935 init_2d_map( &ctx->EvalMap.Map2Texture2, 2, texcoord );
936 init_2d_map( &ctx->EvalMap.Map2Texture3, 3, texcoord );
937 init_2d_map( &ctx->EvalMap.Map2Texture4, 4, texcoord );
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/program/
prog_execute.c 296 const GLfloat texcoord[4], GLfloat lodBias,
308 machine->FetchTexelDeriv(ctx, texcoord,
314 machine->FetchTexelLod(ctx, texcoord, lodBias, unit, color);
1069 GLfloat texcoord[4], color[4]; local
1070 fetch_vector4(&inst->SrcReg[0], machine, texcoord);
1072 /* For TEX, texcoord.Q should not be used and its value should not
1075 * which is effectively what happens when the texcoord swizzle
1078 texcoord[3] = 1.0f;
1080 fetch_texel(ctx, machine, inst, texcoord, 0.0, color);
1086 texcoord[0], texcoord[1], texcoord[2], texcoord[3])
1094 GLfloat texcoord[4], color[4], lodBias; local
1121 GLfloat texcoord[4], dtdx[4], dtdy[4], color[4]; local
1134 GLfloat texcoord[4], color[4], lod; local
1150 GLfloat texcoord[4], color[4]; local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/util/
u_blitter.h 53 } texcoord; member in union:blitter_attrib
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/nouveau/nv30/
nv30_state.h 87 uint16_t texcoord[10]; member in struct:nv30_vertprog
119 uint16_t texcoord[10]; member in struct:nv30_fragprog
  /xsrc/external/mit/MesaLib/dist/src/microsoft/compiler/
dxil_nir_lower_int_samplers.c 297 nir_ssa_def *texcoord = NULL; local
302 texcoord = params->wrap[0].coords;
305 texcoord = nir_vec2(b, params->wrap[0].coords, params->wrap[1].coords);
308 texcoord = nir_vec3(b, params->wrap[0].coords, params->wrap[1].coords, params->wrap[2].coords);
314 texcoord = nir_f2i32(b, texcoord);
318 nir_tex_instr_add_src(load, nir_tex_src_coord, nir_src_for_ssa(texcoord));
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/util/
u_blitter.h 53 } texcoord; member in union:blitter_attrib
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/nouveau/nv30/
nv30_state.h 87 uint16_t texcoord[10]; member in struct:nv30_vertprog
119 uint16_t texcoord[10]; member in struct:nv30_fragprog

Completed in 25 milliseconds

1 2