HomeSort by relevance Sort by last modified time
    Searched defs:texcoord (Results 1 - 21 of 21) sorted by null

  /external/chromium_org/third_party/mesa/src/src/mesa/tnl/
t_vb_texmat.c 49 GLvector4f texcoord[MAX_TEXTURE_COORD_UNITS]; member in struct:texmat_stage_data
71 (void) TransformRaw( &store->texcoord[i],
75 VB->AttribPtr[VERT_ATTRIB_TEX0+i] = &store->texcoord[i];
98 _mesa_vector4f_alloc( &store->texcoord[i], 0, VB->Size, 32 );
111 if (store->texcoord[i].data)
112 _mesa_vector4f_free( &store->texcoord[i] );
t_vb_texgen.c 76 GLvector4f texcoord[MAX_TEXTURE_COORD_UNITS]; member in struct:texgen_stage_data
172 * (f). This allows us to pass in either a texcoord vector4f, or a
257 GLvector4f *out = &store->texcoord[unit];
279 GLvector4f *out = &store->texcoord[unit];
281 GLfloat (*texcoord)[4] = (GLfloat (*)[4])out->start;
287 texcoord[i][0] = norm[0];
288 texcoord[i][1] = norm[1];
289 texcoord[i][2] = norm[2];
307 GLvector4f *out = &store->texcoord[unit];
308 GLfloat (*texcoord)[4] = (GLfloat (*)[4]) out->start
    [all...]
  /external/mesa3d/src/mesa/tnl/
t_vb_texmat.c 49 GLvector4f texcoord[MAX_TEXTURE_COORD_UNITS]; member in struct:texmat_stage_data
71 (void) TransformRaw( &store->texcoord[i],
75 VB->AttribPtr[VERT_ATTRIB_TEX0+i] = &store->texcoord[i];
98 _mesa_vector4f_alloc( &store->texcoord[i], 0, VB->Size, 32 );
111 if (store->texcoord[i].data)
112 _mesa_vector4f_free( &store->texcoord[i] );
t_vb_texgen.c 76 GLvector4f texcoord[MAX_TEXTURE_COORD_UNITS]; member in struct:texgen_stage_data
172 * (f). This allows us to pass in either a texcoord vector4f, or a
257 GLvector4f *out = &store->texcoord[unit];
279 GLvector4f *out = &store->texcoord[unit];
281 GLfloat (*texcoord)[4] = (GLfloat (*)[4])out->start;
287 texcoord[i][0] = norm[0];
288 texcoord[i][1] = norm[1];
289 texcoord[i][2] = norm[2];
307 GLvector4f *out = &store->texcoord[unit];
308 GLfloat (*texcoord)[4] = (GLfloat (*)[4]) out->start
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_cb_feedback.c 88 const GLfloat *color, *texcoord; local
99 * color and texcoord attribs to use here.
110 texcoord = v->data[slot];
112 texcoord = ctx->Current.Attrib[VERT_ATTRIB_TEX0];
114 _mesa_feedback_vertex(ctx, win, color, texcoord);
  /external/mesa3d/src/mesa/state_tracker/
st_cb_feedback.c 88 const GLfloat *color, *texcoord; local
99 * color and texcoord attribs to use here.
110 texcoord = v->data[slot];
112 texcoord = ctx->Current.Attrib[VERT_ATTRIB_TEX0];
114 _mesa_feedback_vertex(ctx, win, color, texcoord);
  /external/chromium_org/third_party/mesa/src/src/gallium/tests/graw/
fs-test.c 56 float texcoord[4]; member in struct:vertex
210 ve[2].src_offset = Offset(struct vertex, texcoord);
gs-test.c 58 float texcoord[4]; member in struct:vertex
243 ve[2].src_offset = Offset(struct vertex, texcoord);
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
eval.c 1015 static GLfloat texcoord[4] = { 0.0, 0.0, 0.0, 1.0 }; local
1023 init_1d_map( &ctx->EvalMap.Map1Texture1, 1, texcoord );
1024 init_1d_map( &ctx->EvalMap.Map1Texture2, 2, texcoord );
1025 init_1d_map( &ctx->EvalMap.Map1Texture3, 3, texcoord );
1026 init_1d_map( &ctx->EvalMap.Map1Texture4, 4, texcoord );
1035 init_2d_map( &ctx->EvalMap.Map2Texture1, 1, texcoord );
1036 init_2d_map( &ctx->EvalMap.Map2Texture2, 2, texcoord );
1037 init_2d_map( &ctx->EvalMap.Map2Texture3, 3, texcoord );
1038 init_2d_map( &ctx->EvalMap.Map2Texture4, 4, texcoord );
ff_fragment_shader.cpp 529 /* Texcoord override from bumpmapping. */
532 /* Reg containing texcoord for a texture unit,
920 ir_rvalue *texcoord; local
923 texcoord = get_current_attrib(p, VERT_ATTRIB_TEX0 + unit);
925 texcoord = new(p->mem_ctx) ir_dereference_variable(p->texcoord_tex[unit]);
929 texcoord = new(p->mem_ctx) ir_dereference_variable(tc_array);
931 texcoord = new(p->mem_ctx) ir_dereference_array(texcoord, index);
1025 tex->coordinate = new(p->mem_ctx) ir_swizzle(texcoord, 0, 1, 2, 3, coords);
1028 texcoord = texcoord->clone(p->mem_ctx, NULL)
1097 ir_rvalue *texcoord; local
    [all...]
  /external/mesa3d/src/gallium/tests/graw/
fs-test.c 56 float texcoord[4]; member in struct:vertex
210 ve[2].src_offset = Offset(struct vertex, texcoord);
gs-test.c 58 float texcoord[4]; member in struct:vertex
243 ve[2].src_offset = Offset(struct vertex, texcoord);
  /external/mesa3d/src/mesa/main/
eval.c 1015 static GLfloat texcoord[4] = { 0.0, 0.0, 0.0, 1.0 }; local
1023 init_1d_map( &ctx->EvalMap.Map1Texture1, 1, texcoord );
1024 init_1d_map( &ctx->EvalMap.Map1Texture2, 2, texcoord );
1025 init_1d_map( &ctx->EvalMap.Map1Texture3, 3, texcoord );
1026 init_1d_map( &ctx->EvalMap.Map1Texture4, 4, texcoord );
1035 init_2d_map( &ctx->EvalMap.Map2Texture1, 1, texcoord );
1036 init_2d_map( &ctx->EvalMap.Map2Texture2, 2, texcoord );
1037 init_2d_map( &ctx->EvalMap.Map2Texture3, 3, texcoord );
1038 init_2d_map( &ctx->EvalMap.Map2Texture4, 4, texcoord );
ff_fragment_shader.cpp 529 /* Texcoord override from bumpmapping. */
532 /* Reg containing texcoord for a texture unit,
920 ir_rvalue *texcoord; local
923 texcoord = get_current_attrib(p, VERT_ATTRIB_TEX0 + unit);
925 texcoord = new(p->mem_ctx) ir_dereference_variable(p->texcoord_tex[unit]);
929 texcoord = new(p->mem_ctx) ir_dereference_variable(tc_array);
931 texcoord = new(p->mem_ctx) ir_dereference_array(texcoord, index);
1025 tex->coordinate = new(p->mem_ctx) ir_swizzle(texcoord, 0, 1, 2, 3, coords);
1028 texcoord = texcoord->clone(p->mem_ctx, NULL)
1097 ir_rvalue *texcoord; local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/test/
testgl.c 171 GLuint SDL_GL_LoadTexture(SDL_Surface *surface, GLfloat *texcoord)
183 texcoord[0] = 0.0f; /* Min X */
184 texcoord[1] = 0.0f; /* Min Y */
185 texcoord[2] = (GLfloat)surface->w / w; /* Max X */
186 texcoord[3] = (GLfloat)surface->h / h; /* Max Y */
254 GLfloat texcoord[4]; local
265 cursor_texture = SDL_GL_LoadTexture(image, texcoord);
268 texMinX = texcoord[0];
269 texMinY = texcoord[1];
270 texMaxX = texcoord[2]
313 GLfloat texcoord[4]; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/
nv30_state.h 85 uint16_t texcoord[10]; member in struct:nv30_vertprog
117 uint16_t texcoord[10]; member in struct:nv30_fragprog
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
prog_execute.c 390 const GLfloat texcoord[4], GLfloat lodBias,
402 machine->FetchTexelDeriv(ctx, texcoord,
408 machine->FetchTexelLod(ctx, texcoord, lodBias, unit, color);
1651 GLfloat texcoord[4], color[4]; local
1676 GLfloat texcoord[4], color[4], lodBias; local
1703 GLfloat texcoord[4], dtdx[4], dtdy[4], color[4]; local
1716 GLfloat texcoord[4], color[4], lod; local
1732 GLfloat texcoord[4], color[4]; local
1755 GLfloat texcoord[4], color[4]; local
    [all...]
  /external/mesa3d/src/gallium/drivers/nv30/
nv30_state.h 85 uint16_t texcoord[10]; member in struct:nv30_vertprog
117 uint16_t texcoord[10]; member in struct:nv30_fragprog
  /external/mesa3d/src/mesa/program/
prog_execute.c 390 const GLfloat texcoord[4], GLfloat lodBias,
402 machine->FetchTexelDeriv(ctx, texcoord,
408 machine->FetchTexelLod(ctx, texcoord, lodBias, unit, color);
1651 GLfloat texcoord[4], color[4]; local
1676 GLfloat texcoord[4], color[4], lodBias; local
1703 GLfloat texcoord[4], dtdx[4], dtdy[4], color[4]; local
1716 GLfloat texcoord[4], color[4], lod; local
1732 GLfloat texcoord[4], color[4]; local
1755 GLfloat texcoord[4], color[4]; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_tgsi_insn.c 1451 struct src_register texcoord; local
1536 struct src_register texcoord; local
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/
svga_tgsi_insn.c 1451 struct src_register texcoord; local
1536 struct src_register texcoord; local
    [all...]

Completed in 658 milliseconds