Home
last modified time | relevance | path

Searched refs:WrapS (Results 1 – 17 of 17) sorted by relevance

/external/mesa3d/src/mesa/swrast/
Ds_texfilter.c518 *i = clamp_rect_coord_nearest(samp->WrapS, texcoord[0], width); in nearest_texcoord()
523 *i = nearest_texel_location(samp->WrapS, img, width, texcoord[0]); in nearest_texcoord()
528 *i = nearest_texel_location(samp->WrapS, img, width, texcoord[0]); in nearest_texcoord()
533 *i = nearest_texel_location(samp->WrapS, img, width, texcoord[0]); in nearest_texcoord()
538 *i = nearest_texel_location(samp->WrapS, img, width, texcoord[0]); in nearest_texcoord()
568 clamp_rect_coord_linear(samp->WrapS, texcoord[0], in linear_texcoord()
577 linear_texel_locations(samp->WrapS, img, width, in linear_texcoord()
585 linear_texel_locations(samp->WrapS, img, width, in linear_texcoord()
593 linear_texel_locations(samp->WrapS, img, width, in linear_texcoord()
858 i = nearest_texel_location(samp->WrapS, img, width, texcoord[0]); in sample_1d_nearest()
[all …]
Ds_triangle.c1076 && samp->WrapS == GL_REPEAT in _swrast_choose_triangle()
/external/mesa3d/src/mesa/main/
Dsamplerobj.c148 sampObj->WrapS = GL_REPEAT; in _mesa_init_sampler_object()
474 if (samp->WrapS == s && samp->WrapT == t && samp->WrapR == r) in _mesa_set_sampler_wrap()
478 samp->WrapS = s; in _mesa_set_sampler_wrap()
491 if (samp->WrapS == param) in set_sampler_wrap_s()
495 samp->WrapS = param; in set_sampler_wrap_s()
1362 *params = sampObj->WrapS; in _mesa_GetSamplerParameteriv()
1454 *params = (GLfloat) sampObj->WrapS; in _mesa_GetSamplerParameterfv()
1529 *params = sampObj->WrapS; in _mesa_GetSamplerParameterIiv()
1604 *params = sampObj->WrapS; in _mesa_GetSamplerParameterIuiv()
Dtexobj.c306 obj->Sampler.WrapS = GL_CLAMP_TO_EDGE; in _mesa_initialize_texture_object()
312 obj->Sampler.WrapS = GL_REPEAT; in _mesa_initialize_texture_object()
363 obj->Sampler.WrapS = GL_CLAMP_TO_EDGE; in finish_texture_init()
444 dest->Sampler.WrapS = src->Sampler.WrapS; in _mesa_copy_texture_object()
Dtexparam.c330 if (texObj->Sampler.WrapS == params[0]) in set_tex_parameteri()
334 texObj->Sampler.WrapS = params[0]; in set_tex_parameteri()
1789 *params = ENUM_TO_FLOAT(obj->Sampler.WrapS); in get_tex_parameterfv()
2024 *params = (GLint) obj->Sampler.WrapS; in get_tex_parameteriv()
Dmtypes.h962 GLenum WrapS; /**< S-axis texture image wrap mode */ member
Dattrib.c871 _mesa_TexParameteri(target, GL_TEXTURE_WRAP_S, samp->WrapS); in pop_texture_group()
/external/mesa3d/src/mesa/drivers/dri/nouveau/
Dnv04_state_tex.c89 nvgl_wrap_mode(sa->WrapS) << 24 | in nv04_emit_tex_obj()
Dnv10_state_tex.c184 | nvgl_wrap_mode(sa->WrapS) << 24 in nv10_emit_tex_obj()
Dnv20_state_tex.c198 | nvgl_wrap_mode(sa->WrapS) << 0; in nv20_emit_tex_obj()
/external/mesa3d/src/mesa/drivers/dri/radeon/
Dradeon_tex.c319 radeonSetTexWrap(t, samp->WrapS, samp->WrapT); in radeonTexUpdateParameters()
420 radeonSetTexWrap( t, t->base.Sampler.WrapS, t->base.Sampler.WrapT ); in radeonNewTextureObject()
/external/mesa3d/src/mesa/drivers/dri/r200/
Dr200_tex.c368 r200SetTexWrap(t, samp->WrapS, samp->WrapT, samp->WrapR); in r200TexUpdateParameters()
480 r200SetTexWrap( t, t->base.Sampler.WrapS, t->base.Sampler.WrapT, t->base.Sampler.WrapR ); in r200NewTextureObject()
/external/mesa3d/src/mesa/state_tracker/
Dst_atom_sampler.c150 sampler->wrap_s = gl_wrap_xlate(msamp->WrapS); in convert_sampler()
/external/mesa3d/src/mesa/drivers/dri/i915/
Di830_texstate.c284 GLenum ws = sampler->WrapS; in i830_update_tex_unit()
Di915_texstate.c289 GLenum ws = sampler->WrapS; in i915_update_tex_unit()
/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_wm.c330 if (sampler->WrapS == GL_CLAMP) in brw_populate_sampler_prog_key_data()
Dbrw_sampler_state.c482 unsigned wrap_s = translate_wrap_mode(brw, sampler->WrapS, either_nearest); in brw_update_sampler_state()