Home
last modified time | relevance | path

Searched refs:tex_width (Results 1 – 8 of 8) sorted by relevance

/external/mesa3d/src/gallium/state_trackers/vega/
Drenderer.c106 VGint tex_width; member
111 VGint tex_width; member
121 VGint tex_width, tex_height; member
533 VGint tex_width, VGint tex_height) in renderer_quad_texcoord() argument
538 s0 = x0 / tex_width; in renderer_quad_texcoord()
539 s1 = x1 / tex_width; in renderer_quad_texcoord()
610 renderer->u.copy.tex_width = src->texture->width0; in renderer_copy_begin()
632 renderer->u.copy.tex_width, in renderer_copy()
683 renderer->u.drawtex.tex_width = src->texture->width0; in renderer_drawtex_begin()
705 renderer->u.drawtex.tex_width, in renderer_drawtex()
[all …]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
Drenderer.c106 VGint tex_width; member
111 VGint tex_width; member
121 VGint tex_width, tex_height; member
533 VGint tex_width, VGint tex_height) in renderer_quad_texcoord() argument
538 s0 = x0 / tex_width; in renderer_quad_texcoord()
539 s1 = x1 / tex_width; in renderer_quad_texcoord()
610 renderer->u.copy.tex_width = src->texture->width0; in renderer_copy_begin()
632 renderer->u.copy.tex_width, in renderer_copy()
683 renderer->u.drawtex.tex_width = src->texture->width0; in renderer_drawtex_begin()
705 renderer->u.drawtex.tex_width, in renderer_drawtex()
[all …]
/external/mesa3d/src/gallium/state_trackers/xorg/
Dxorg_exa.c796 size_match( int width, int tex_width ) in size_match() argument
799 if (width > tex_width) in size_match()
802 if (width * 2 < tex_width) in size_match()
807 return width == tex_width; in size_match()
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xorg/
Dxorg_exa.c796 size_match( int width, int tex_width ) in size_match() argument
799 if (width > tex_width) in size_match()
802 if (width * 2 < tex_width) in size_match()
807 return width == tex_width; in size_match()
/external/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_sample_soa.c1249 LLVMValueRef tex_width, tex_height, tex_depth; in lp_build_sample_soa() local
1296 tex_width = dynamic_state->width(dynamic_state, gallivm, unit); in lp_build_sample_soa()
1310 bld.int_size = tex_width; in lp_build_sample_soa()
1314 tex_width, LLVMConstInt(i32t, 0, 0), ""); in lp_build_sample_soa()
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
Dlp_bld_sample_soa.c1249 LLVMValueRef tex_width, tex_height, tex_depth; in lp_build_sample_soa() local
1296 tex_width = dynamic_state->width(dynamic_state, gallivm, unit); in lp_build_sample_soa()
1310 bld.int_size = tex_width; in lp_build_sample_soa()
1314 tex_width, LLVMConstInt(i32t, 0, 0), ""); in lp_build_sample_soa()
/external/chromium_org/gpu/command_buffer/service/
Dtexture_manager.cc1467 GLsizei tex_width = 0; in DoTexImage2D() local
1472 texture->GetLevelSize(args.target, args.level, &tex_width, &tex_height) && in DoTexImage2D()
1474 args.width == tex_width && args.height == tex_height && in DoTexImage2D()
Dgles2_cmd_decoder.cc7956 GLsizei tex_width = 0; in ValidateCompressedTexSubDimensions() local
7958 if (!texture->GetLevelSize(target, level, &tex_width, &tex_height) || in ValidateCompressedTexSubDimensions()
7959 width - xoffset > tex_width || in ValidateCompressedTexSubDimensions()
8601 GLsizei tex_width = 0; in DoTexSubImage2D() local
8603 bool ok = texture->GetLevelSize(target, level, &tex_width, &tex_height); in DoTexSubImage2D()
8606 width != tex_width || height != tex_height) { in DoTexSubImage2D()