Searched refs:WrapT (Results 1 – 17 of 17) sorted by relevance
/external/mesa3d/src/mesa/main/ |
D | samplerobj.c | 121 sampObj->WrapT = GL_REPEAT; in _mesa_init_sampler_object() 524 if (samp->WrapS == s && samp->WrapT == t && samp->WrapR == r) in _mesa_set_sampler_wrap() 529 samp->WrapT = t; in _mesa_set_sampler_wrap() 556 if (samp->WrapT == param) in set_sampler_wrap_t() 560 samp->WrapT = param; in set_sampler_wrap_t() 1416 *params = sampObj->WrapT; in _mesa_GetSamplerParameteriv() 1508 *params = (GLfloat) sampObj->WrapT; in _mesa_GetSamplerParameterfv() 1580 *params = sampObj->WrapT; in _mesa_GetSamplerParameterIiv() 1652 *params = sampObj->WrapT; in _mesa_GetSamplerParameterIuiv()
|
D | texobj.c | 335 obj->Sampler.WrapT = GL_CLAMP_TO_EDGE; in _mesa_initialize_texture_object() 341 obj->Sampler.WrapT = GL_REPEAT; in _mesa_initialize_texture_object() 396 obj->Sampler.WrapT = GL_CLAMP_TO_EDGE; in finish_texture_init() 480 dest->Sampler.WrapT = src->Sampler.WrapT; in _mesa_copy_texture_object()
|
D | texparam.c | 329 if (texObj->Sampler.WrapT == params[0]) in set_tex_parameteri() 333 texObj->Sampler.WrapT = params[0]; in set_tex_parameteri() 2158 *params = ENUM_TO_FLOAT(obj->Sampler.WrapT); in get_tex_parameterfv() 2396 *params = (GLint) obj->Sampler.WrapT; in get_tex_parameteriv()
|
D | attrib.c | 921 _mesa_TexParameteri(target, GL_TEXTURE_WRAP_T, samp->WrapT); in pop_texture_group()
|
D | mtypes.h | 935 GLenum16 WrapT; /**< T-axis texture image wrap mode */ member
|
/external/mesa3d/src/mesa/swrast/ |
D | s_texfilter.c | 519 *j = clamp_rect_coord_nearest(samp->WrapT, texcoord[1], height); in nearest_texcoord() 529 *j = nearest_texel_location(samp->WrapT, img, height, texcoord[1]); in nearest_texcoord() 539 *j = nearest_texel_location(samp->WrapT, img, height, texcoord[1]); in nearest_texcoord() 570 clamp_rect_coord_linear(samp->WrapT, texcoord[1], in linear_texcoord() 579 linear_texel_locations(samp->WrapT, img, height, in linear_texcoord() 595 linear_texel_locations(samp->WrapT, img, height, in linear_texcoord() 1129 j = nearest_texel_location(samp->WrapT, img, height, texcoord[1]); in sample_2d_nearest() 1165 linear_texel_locations(samp->WrapT, img, height, texcoord[1], &j0, &j1, &b); in sample_2d_linear() 1231 assert(samp->WrapT == GL_REPEAT); in sample_2d_linear_repeat() 1340 assert(samp->WrapT == GL_REPEAT); in sample_2d_linear_mipmap_linear_repeat() [all …]
|
D | s_triangle.c | 1078 && samp->WrapT == GL_REPEAT in _swrast_choose_triangle()
|
/external/mesa3d/src/mesa/drivers/dri/nouveau/ |
D | nv04_state_tex.c | 88 format |= nvgl_wrap_mode(sa->WrapT) << 28 | in nv04_emit_tex_obj()
|
D | nv10_state_tex.c | 184 tx_format = nvgl_wrap_mode(sa->WrapT) << 28 in nv10_emit_tex_obj()
|
D | nv20_state_tex.c | 207 | nvgl_wrap_mode_nv20(sa->WrapT) << 8 in nv20_emit_tex_obj()
|
/external/mesa3d/src/mesa/drivers/dri/radeon/ |
D | radeon_tex.c | 320 radeonSetTexWrap(t, samp->WrapS, samp->WrapT); in radeonTexUpdateParameters() 421 radeonSetTexWrap( t, t->base.Sampler.WrapS, t->base.Sampler.WrapT ); in radeonNewTextureObject()
|
/external/mesa3d/src/mesa/drivers/dri/r200/ |
D | r200_tex.c | 370 r200SetTexWrap(t, samp->WrapS, samp->WrapT, samp->WrapR); in r200TexUpdateParameters() 482 r200SetTexWrap( t, t->base.Sampler.WrapS, t->base.Sampler.WrapT, t->base.Sampler.WrapR ); in r200NewTextureObject()
|
/external/mesa3d/src/mesa/drivers/dri/i915/ |
D | i830_texstate.c | 285 GLenum wt = sampler->WrapT; in i830_update_tex_unit()
|
D | i915_texstate.c | 290 GLenum wt = sampler->WrapT; in i915_update_tex_unit()
|
/external/mesa3d/src/mesa/state_tracker/ |
D | st_atom_sampler.c | 114 sampler->wrap_t = gl_wrap_xlate(msamp->WrapT); in st_convert_sampler()
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | brw_wm.c | 227 if (sampler->WrapT == GL_CLAMP) in brw_populate_sampler_prog_key_data()
|
D | genX_state_upload.c | 5268 unsigned wrap_t = translate_wrap_mode(sampler->WrapT, either_nearest);
|