HomeSort by relevance Sort by last modified time
    Searched refs:_Current (Results 1 - 25 of 142) sorted by null

1 2 3 4 5 6

  /external/chromium_org/third_party/mesa/src/src/mesa/tnl/
t_vp_build.c 44 const struct gl_vertex_program *prev = ctx->VertexProgram._Current;
46 if (!ctx->VertexProgram._Current ||
47 ctx->VertexProgram._Current == ctx->VertexProgram._TnlProgram) {
48 ctx->VertexProgram._Current
56 if (ctx->VertexProgram._Current != prev && ctx->Driver.BindProgram) {
58 (struct gl_program *) ctx->VertexProgram._Current);
  /external/mesa3d/src/mesa/tnl/
t_vp_build.c 44 const struct gl_vertex_program *prev = ctx->VertexProgram._Current;
46 if (!ctx->VertexProgram._Current ||
47 ctx->VertexProgram._Current == ctx->VertexProgram._TnlProgram) {
48 ctx->VertexProgram._Current
56 if (ctx->VertexProgram._Current != prev && ctx->Driver.BindProgram) {
58 (struct gl_program *) ctx->VertexProgram._Current);
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
state.h 62 if (ctx->VertexProgram._Current &&
63 (ctx->VertexProgram._Current != ctx->VertexProgram._TnlProgram) &&
64 (ctx->VertexProgram._Current->Base.InputsRead & VERT_BIT_COLOR1))
67 if (ctx->FragmentProgram._Current &&
68 (ctx->FragmentProgram._Current != ctx->FragmentProgram._TexEnvProgram) &&
69 (ctx->FragmentProgram._Current->Base.InputsRead & FRAG_BIT_COL1))
state.c 90 * Update the ctx->Vertex/Geometry/FragmentProgram._Current pointers to point
109 const struct gl_vertex_program *prevVP = ctx->VertexProgram._Current;
110 const struct gl_fragment_program *prevFP = ctx->FragmentProgram._Current;
111 const struct gl_geometry_program *prevGP = ctx->GeometryProgram._Current;
115 * Set the ctx->VertexProgram._Current and ctx->FragmentProgram._Current
136 _mesa_reference_fragprog(ctx, &ctx->FragmentProgram._Current,
146 _mesa_reference_fragprog(ctx, &ctx->FragmentProgram._Current,
158 _mesa_reference_fragprog(ctx, &ctx->FragmentProgram._Current,
165 _mesa_reference_fragprog(ctx, &ctx->FragmentProgram._Current, NULL)
    [all...]
samplerobj.h 36 else if (ctx->Texture.Unit[unit]._Current)
37 return &ctx->Texture.Unit[unit]._Current->Sampler;
  /external/mesa3d/src/mesa/main/
state.h 62 if (ctx->VertexProgram._Current &&
63 (ctx->VertexProgram._Current != ctx->VertexProgram._TnlProgram) &&
64 (ctx->VertexProgram._Current->Base.InputsRead & VERT_BIT_COLOR1))
67 if (ctx->FragmentProgram._Current &&
68 (ctx->FragmentProgram._Current != ctx->FragmentProgram._TexEnvProgram) &&
69 (ctx->FragmentProgram._Current->Base.InputsRead & FRAG_BIT_COL1))
state.c 90 * Update the ctx->Vertex/Geometry/FragmentProgram._Current pointers to point
109 const struct gl_vertex_program *prevVP = ctx->VertexProgram._Current;
110 const struct gl_fragment_program *prevFP = ctx->FragmentProgram._Current;
111 const struct gl_geometry_program *prevGP = ctx->GeometryProgram._Current;
115 * Set the ctx->VertexProgram._Current and ctx->FragmentProgram._Current
136 _mesa_reference_fragprog(ctx, &ctx->FragmentProgram._Current,
146 _mesa_reference_fragprog(ctx, &ctx->FragmentProgram._Current,
158 _mesa_reference_fragprog(ctx, &ctx->FragmentProgram._Current,
165 _mesa_reference_fragprog(ctx, &ctx->FragmentProgram._Current, NULL)
    [all...]
samplerobj.h 36 else if (ctx->Texture.Unit[unit]._Current)
37 return &ctx->Texture.Unit[unit]._Current->Sampler;
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_atom_shader.c 79 assert(st->ctx->FragmentProgram._Current);
80 stfp = st_fragment_program(st->ctx->FragmentProgram._Current);
131 assert(st->ctx->VertexProgram._Current);
132 stvp = st_vertex_program(st->ctx->VertexProgram._Current);
180 if (!st->ctx->GeometryProgram._Current) {
185 stgp = st_geometry_program(st->ctx->GeometryProgram._Current);
st_atom_texture.c 202 texObj = ctx->Texture.Unit[texUnit]._Current;
320 &ctx->VertexProgram._Current->Base,
335 &ctx->FragmentProgram._Current->Base,
347 if (ctx->GeometryProgram._Current) {
350 &ctx->GeometryProgram._Current->Base,
393 struct gl_fragment_program *fprog = ctx->FragmentProgram._Current;
403 = ctx->Texture.Unit[texUnit]._Current;
st_atom_sampler.c 135 texobj = ctx->Texture.Unit[texUnit]._Current;
260 &ctx->FragmentProgram._Current->Base,
267 &ctx->VertexProgram._Current->Base,
272 if (ctx->GeometryProgram._Current) {
275 &ctx->GeometryProgram._Current->Base,
st_atom.c 119 if (ctx->VertexProgram._Current != &st->vp->Base)
122 if (ctx->FragmentProgram._Current != &st->fp->Base)
125 if (ctx->GeometryProgram._Current != &st->gp->Base)
  /external/mesa3d/src/mesa/state_tracker/
st_atom_shader.c 79 assert(st->ctx->FragmentProgram._Current);
80 stfp = st_fragment_program(st->ctx->FragmentProgram._Current);
131 assert(st->ctx->VertexProgram._Current);
132 stvp = st_vertex_program(st->ctx->VertexProgram._Current);
180 if (!st->ctx->GeometryProgram._Current) {
185 stgp = st_geometry_program(st->ctx->GeometryProgram._Current);
st_atom_texture.c 202 texObj = ctx->Texture.Unit[texUnit]._Current;
320 &ctx->VertexProgram._Current->Base,
335 &ctx->FragmentProgram._Current->Base,
347 if (ctx->GeometryProgram._Current) {
350 &ctx->GeometryProgram._Current->Base,
393 struct gl_fragment_program *fprog = ctx->FragmentProgram._Current;
403 = ctx->Texture.Unit[texUnit]._Current;
st_atom_sampler.c 135 texobj = ctx->Texture.Unit[texUnit]._Current;
260 &ctx->FragmentProgram._Current->Base,
267 &ctx->VertexProgram._Current->Base,
272 if (ctx->GeometryProgram._Current) {
275 &ctx->GeometryProgram._Current->Base,
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
intel_span.c 119 tex_obj = intel_texture_object(ctx->Texture.Unit[i]._Current);
159 struct gl_texture_object *texObj = ctx->Texture.Unit[i]._Current;
184 if (ctx->VertexProgram._Current == NULL)
189 ctx->VertexProgram._Current->Base.TexturesUsed[i] != 0) {
190 struct gl_texture_object *texObj = ctx->Texture.Unit[i]._Current;
204 if (ctx->VertexProgram._Current == NULL)
209 ctx->VertexProgram._Current->Base.TexturesUsed[i] != 0) {
210 struct gl_texture_object *texObj = ctx->Texture.Unit[i]._Current;
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_span.c 119 tex_obj = intel_texture_object(ctx->Texture.Unit[i]._Current);
159 struct gl_texture_object *texObj = ctx->Texture.Unit[i]._Current;
184 if (ctx->VertexProgram._Current == NULL)
189 ctx->VertexProgram._Current->Base.TexturesUsed[i] != 0) {
190 struct gl_texture_object *texObj = ctx->Texture.Unit[i]._Current;
204 if (ctx->VertexProgram._Current == NULL)
209 ctx->VertexProgram._Current->Base.TexturesUsed[i] != 0) {
210 struct gl_texture_object *texObj = ctx->Texture.Unit[i]._Current;
  /external/chromium_org/third_party/mesa/src/src/mesa/vbo/
vbo_context.h 107 if (!ctx->VertexProgram._Current)
109 else if (ctx->VertexProgram._Current == ctx->VertexProgram._TnlProgram)
111 else if (ctx->VertexProgram._Current->IsNVProgram)
  /external/mesa3d/src/mesa/vbo/
vbo_context.h 107 if (!ctx->VertexProgram._Current)
109 else if (ctx->VertexProgram._Current == ctx->VertexProgram._TnlProgram)
111 else if (ctx->VertexProgram._Current->IsNVProgram)
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
nouveau_span.c 72 _swrast_map_texture(ctx, ctx->Texture.Unit[i]._Current);
74 _swrast_unmap_texture(ctx, ctx->Texture.Unit[i]._Current);
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_span.c 72 _swrast_map_texture(ctx, ctx->Texture.Unit[i]._Current);
74 _swrast_unmap_texture(ctx, ctx->Texture.Unit[i]._Current);
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_fragprog.c 43 struct gl_fragment_program *fp = ctx->FragmentProgram._Current;
82 const struct gl_texture_object *texObj = ctx->Texture.Unit[unit]._Current;
91 swrast->TextureSample[unit](ctx, samp, ctx->Texture.Unit[unit]._Current,
116 const struct gl_texture_object *texObj = texUnit->_Current;
140 swrast->TextureSample[unit](ctx, samp, ctx->Texture.Unit[unit]._Current,
218 const struct gl_fragment_program *program = ctx->FragmentProgram._Current;
277 const struct gl_fragment_program *program = ctx->FragmentProgram._Current;
  /external/mesa3d/src/mesa/swrast/
s_fragprog.c 43 struct gl_fragment_program *fp = ctx->FragmentProgram._Current;
82 const struct gl_texture_object *texObj = ctx->Texture.Unit[unit]._Current;
91 swrast->TextureSample[unit](ctx, samp, ctx->Texture.Unit[unit]._Current,
116 const struct gl_texture_object *texObj = texUnit->_Current;
140 swrast->TextureSample[unit](ctx, samp, ctx->Texture.Unit[unit]._Current,
218 const struct gl_fragment_program *program = ctx->FragmentProgram._Current;
277 const struct gl_fragment_program *program = ctx->FragmentProgram._Current;
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_span.c 129 ctx->Texture.Unit[i]._Current);
130 radeon_swrast_map_texture_images(ctx, ctx->Texture.Unit[i]._Current);
147 radeon_swrast_unmap_texture_images(ctx, ctx->Texture.Unit[i]._Current);
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_span.c 129 ctx->Texture.Unit[i]._Current);
130 radeon_swrast_map_texture_images(ctx, ctx->Texture.Unit[i]._Current);
147 radeon_swrast_unmap_texture_images(ctx, ctx->Texture.Unit[i]._Current);

Completed in 104 milliseconds

1 2 3 4 5 6