Home
last modified time | relevance | path

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

/external/mesa3d/src/mesa/main/
Dsamplerobj.c121 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()
Dtexobj.c335 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()
Dtexparam.c329 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()
Dattrib.c921 _mesa_TexParameteri(target, GL_TEXTURE_WRAP_T, samp->WrapT); in pop_texture_group()
Dmtypes.h935 GLenum16 WrapT; /**< T-axis texture image wrap mode */ member
/external/mesa3d/src/mesa/swrast/
Ds_texfilter.c519 *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 …]
Ds_triangle.c1078 && samp->WrapT == GL_REPEAT in _swrast_choose_triangle()
/external/mesa3d/src/mesa/drivers/dri/nouveau/
Dnv04_state_tex.c88 format |= nvgl_wrap_mode(sa->WrapT) << 28 | in nv04_emit_tex_obj()
Dnv10_state_tex.c184 tx_format = nvgl_wrap_mode(sa->WrapT) << 28 in nv10_emit_tex_obj()
Dnv20_state_tex.c207 | nvgl_wrap_mode_nv20(sa->WrapT) << 8 in nv20_emit_tex_obj()
/external/mesa3d/src/mesa/drivers/dri/radeon/
Dradeon_tex.c320 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/
Dr200_tex.c370 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/
Di830_texstate.c285 GLenum wt = sampler->WrapT; in i830_update_tex_unit()
Di915_texstate.c290 GLenum wt = sampler->WrapT; in i915_update_tex_unit()
/external/mesa3d/src/mesa/state_tracker/
Dst_atom_sampler.c114 sampler->wrap_t = gl_wrap_xlate(msamp->WrapT); in st_convert_sampler()
/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_wm.c227 if (sampler->WrapT == GL_CLAMP) in brw_populate_sampler_prog_key_data()
DgenX_state_upload.c5268 unsigned wrap_t = translate_wrap_mode(sampler->WrapT, either_nearest);