HomeSort by: relevance | last modified time | path
    Searched refs:WrapS (Results 1 - 25 of 34) sorted by relevancy

1 2

  /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/nouveau/
nv04_state_tex.c 89 nvgl_wrap_mode(sa->Attrib.WrapS) << 24 |
nv20_state_tex.c 202 | nvgl_wrap_mode_nv20(sa->Attrib.WrapS) << 0;
208 | nvgl_wrap_mode_nv20(sa->Attrib.WrapS) << 0;
nv10_state_tex.c 185 | nvgl_wrap_mode(sa->Attrib.WrapS) << 24
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/nouveau/
nv04_state_tex.c 89 nvgl_wrap_mode(sa->WrapS) << 24 |
nv20_state_tex.c 202 | nvgl_wrap_mode_nv20(sa->WrapS) << 0;
208 | nvgl_wrap_mode_nv20(sa->WrapS) << 0;
nv10_state_tex.c 185 | nvgl_wrap_mode(sa->WrapS) << 24
  /xsrc/external/mit/MesaLib/dist/src/mesa/swrast/
s_texfilter.c 518 *i = clamp_rect_coord_nearest(samp->Attrib.WrapS, texcoord[0], width);
523 *i = nearest_texel_location(samp->Attrib.WrapS, img, width, texcoord[0]);
528 *i = nearest_texel_location(samp->Attrib.WrapS, img, width, texcoord[0]);
533 *i = nearest_texel_location(samp->Attrib.WrapS, img, width, texcoord[0]);
538 *i = nearest_texel_location(samp->Attrib.WrapS, img, width, texcoord[0]);
568 clamp_rect_coord_linear(samp->Attrib.WrapS, texcoord[0],
577 linear_texel_locations(samp->Attrib.WrapS, img, width,
585 linear_texel_locations(samp->Attrib.WrapS, img, width,
593 linear_texel_locations(samp->Attrib.WrapS, img, width,
858 i = nearest_texel_location(samp->Attrib.WrapS, img, width, texcoord[0])
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/swrast/
s_texfilter.c 518 *i = clamp_rect_coord_nearest(samp->WrapS, texcoord[0], width);
523 *i = nearest_texel_location(samp->WrapS, img, width, texcoord[0]);
528 *i = nearest_texel_location(samp->WrapS, img, width, texcoord[0]);
533 *i = nearest_texel_location(samp->WrapS, img, width, texcoord[0]);
538 *i = nearest_texel_location(samp->WrapS, img, width, texcoord[0]);
568 clamp_rect_coord_linear(samp->WrapS, texcoord[0],
577 linear_texel_locations(samp->WrapS, img, width,
585 linear_texel_locations(samp->WrapS, img, width,
593 linear_texel_locations(samp->WrapS, img, width,
858 i = nearest_texel_location(samp->WrapS, img, width, texcoord[0])
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/main/
samplerobj.c 119 sampObj->WrapS = GL_REPEAT;
517 if (samp->WrapS == s && samp->WrapT == t && samp->WrapR == r)
521 samp->WrapS = s;
534 if (samp->WrapS == param)
538 samp->WrapS = param;
1406 *params = sampObj->WrapS;
1490 *params = (GLfloat) sampObj->WrapS;
1562 *params = sampObj->WrapS;
1634 *params = sampObj->WrapS;
texobj.c 305 obj->Sampler.WrapS = GL_CLAMP_TO_EDGE;
313 obj->Sampler.WrapS = GL_REPEAT;
370 obj->Sampler.WrapS = GL_CLAMP_TO_EDGE;
454 dest->Sampler.WrapS = src->Sampler.WrapS;
texparam.c 337 if (texObj->Sampler.WrapS == params[0])
341 texObj->Sampler.WrapS = params[0];
1836 *params = ENUM_TO_FLOAT(obj->Sampler.WrapS);
2076 *params = (GLint) obj->Sampler.WrapS;
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/radeon/
radeon_tex.c 320 radeonSetTexWrap(t, samp->WrapS, samp->WrapT);
421 radeonSetTexWrap( t, t->base.Sampler.WrapS, t->base.Sampler.WrapT );
  /xsrc/external/mit/MesaLib/dist/src/mesa/main/
samplerobj.c 120 sampObj->Attrib.WrapS = GL_REPEAT;
542 if (samp->Attrib.WrapS == s && samp->Attrib.WrapT == t && samp->Attrib.WrapR == r)
546 samp->Attrib.WrapS = s;
569 if (samp->Attrib.WrapS == param)
573 if (is_wrap_gl_clamp(samp->Attrib.WrapS) != is_wrap_gl_clamp(param))
575 samp->Attrib.WrapS = param;
1503 *params = sampObj->Attrib.WrapS;
1601 *params = (GLfloat) sampObj->Attrib.WrapS;
1679 *params = sampObj->Attrib.WrapS;
1757 *params = sampObj->Attrib.WrapS;
    [all...]
samplerobj.h 251 samp->Attrib.WrapS, clamp_to_border);
texparam.c 335 if (texObj->Sampler.Attrib.WrapS == params[0])
339 if (is_wrap_gl_clamp(texObj->Sampler.Attrib.WrapS) != is_wrap_gl_clamp(params[0]))
341 texObj->Sampler.Attrib.WrapS = params[0];
2217 *params = ENUM_TO_FLOAT(obj->Sampler.Attrib.WrapS);
2462 *params = (GLint) obj->Sampler.Attrib.WrapS;
texobj.c 335 obj->Sampler.Attrib.WrapS = GL_CLAMP_TO_EDGE;
346 obj->Sampler.Attrib.WrapS = GL_REPEAT;
417 obj->Sampler.Attrib.WrapS = GL_CLAMP_TO_EDGE;
  /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/r200/
r200_tex.c 370 r200SetTexWrap(t, samp->Attrib.WrapS, samp->Attrib.WrapT, samp->Attrib.WrapR);
483 r200SetTexWrap( t, t->base.Sampler.Attrib.WrapS, t->base.Sampler.Attrib.WrapT, t->base.Sampler.Attrib.WrapR );
  /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/radeon/
radeon_tex.c 320 radeonSetTexWrap(t, samp->Attrib.WrapS, samp->Attrib.WrapT);
422 radeonSetTexWrap( t, t->base.Sampler.Attrib.WrapS, t->base.Sampler.Attrib.WrapT );
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/r200/
r200_tex.c 369 r200SetTexWrap(t, samp->WrapS, samp->WrapT, samp->WrapR);
481 r200SetTexWrap( t, t->base.Sampler.WrapS, t->base.Sampler.WrapT, t->base.Sampler.WrapR );
  /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/i915/
i830_texstate.c 284 GLenum ws = sampler->Attrib.WrapS;
i915_texstate.c 289 GLenum ws = sampler->Attrib.WrapS;
  /xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/
st_atom_shader.c 105 if (is_wrap_gl_clamp(msamp->Attrib.WrapS))
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/i915/
i830_texstate.c 284 GLenum ws = sampler->WrapS;
i915_texstate.c 289 GLenum ws = sampler->WrapS;
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/state_tracker/
st_atom_sampler.c 113 sampler->wrap_s = gl_wrap_xlate(msamp->WrapS);

Completed in 25 milliseconds

1 2