/external/mesa3d/src/mesa/state_tracker/ |
D | st_sampler_view.c | 267 case SWIZZLE_ZERO: in swizzle_swizzle() 268 swz[i] = SWIZZLE_ZERO; in swizzle_swizzle() 311 return MAKE_SWIZZLE4(SWIZZLE_X, SWIZZLE_Y, SWIZZLE_ZERO, SWIZZLE_ONE); in compute_texture_format_swizzle() 313 return MAKE_SWIZZLE4(SWIZZLE_X, SWIZZLE_ZERO, in compute_texture_format_swizzle() 314 SWIZZLE_ZERO, SWIZZLE_ONE); in compute_texture_format_swizzle() 316 return MAKE_SWIZZLE4(SWIZZLE_ZERO, SWIZZLE_ZERO, in compute_texture_format_swizzle() 317 SWIZZLE_ZERO, SWIZZLE_W); in compute_texture_format_swizzle() 352 return MAKE_SWIZZLE4(SWIZZLE_ZERO, SWIZZLE_ZERO, in compute_texture_format_swizzle() 353 SWIZZLE_ZERO, SWIZZLE_X); in compute_texture_format_swizzle() 355 return MAKE_SWIZZLE4(SWIZZLE_X, SWIZZLE_ZERO, in compute_texture_format_swizzle() [all …]
|
D | st_mesa_to_tgsi.c | 344 unsigned zero_mask = ((GET_SWZ(SrcReg->Swizzle, 0) == SWIZZLE_ZERO) << 0 | in emit_swz() 345 (GET_SWZ(SrcReg->Swizzle, 1) == SWIZZLE_ZERO) << 1 | in emit_swz() 346 (GET_SWZ(SrcReg->Swizzle, 2) == SWIZZLE_ZERO) << 2 | in emit_swz() 347 (GET_SWZ(SrcReg->Swizzle, 3) == SWIZZLE_ZERO) << 3); in emit_swz()
|
/external/mesa3d/src/mesa/drivers/dri/r200/ |
D | r200_vertprog.c | 52 SWIZZLE_ZERO != VSF_IN_COMPONENT_ZERO || \ 613 src[i].Swizzle |= SWIZZLE_ZERO << (j*3); in r200_translate_vertex_program() 627 src[i].Swizzle |= SWIZZLE_ZERO << (j*3); in r200_translate_vertex_program() 700 SWIZZLE_ZERO, in r200_translate_vertex_program() 702 SWIZZLE_ZERO, in r200_translate_vertex_program() 714 SWIZZLE_ZERO, SWIZZLE_ZERO, SWIZZLE_ZERO, in r200_translate_vertex_program() 718 SWIZZLE_ZERO, SWIZZLE_ZERO, in r200_translate_vertex_program() 719 t_swizzle(GET_SWZ(src[1].Swizzle, 0)), SWIZZLE_ZERO, in r200_translate_vertex_program() 794 SWIZZLE_ZERO, in r200_translate_vertex_program() 802 SWIZZLE_ZERO, in r200_translate_vertex_program()
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | brw_wm_surface_state.c | 320 SWIZZLE_ZERO, in brw_get_texture_swizzle() 341 swizzles[0] = SWIZZLE_ZERO; in brw_get_texture_swizzle() 342 swizzles[1] = SWIZZLE_ZERO; in brw_get_texture_swizzle() 343 swizzles[2] = SWIZZLE_ZERO; in brw_get_texture_swizzle() 360 swizzles[1] = SWIZZLE_ZERO; in brw_get_texture_swizzle() 361 swizzles[2] = SWIZZLE_ZERO; in brw_get_texture_swizzle() 377 swizzles[0] = SWIZZLE_ZERO; in brw_get_texture_swizzle() 378 swizzles[1] = SWIZZLE_ZERO; in brw_get_texture_swizzle() 379 swizzles[2] = SWIZZLE_ZERO; in brw_get_texture_swizzle()
|
/external/mesa3d/src/mesa/program/ |
D | prog_instruction.h | 53 #define SWIZZLE_ZERO 4 /**< For SWZ instruction only */ macro
|
D | prog_execute.c | 1048 if (swz == SWIZZLE_ZERO) in _mesa_execute_program()
|
D | prog_to_nir.c | 242 if (swizzle == SWIZZLE_ZERO) { in ptn_get_src()
|
D | program_parse.y | 655 $$.swz = ($1 == 0) ? SWIZZLE_ZERO : SWIZZLE_ONE;
|
D | ir_to_mesa.cpp | 854 components[i] = SWIZZLE_ZERO; in emit_swz()
|
/external/swiftshader/src/Renderer/ |
D | Sampler.hpp | 136 SWIZZLE_ZERO, enumerator
|
/external/swiftshader/src/Device/ |
D | Sampler.hpp | 136 SWIZZLE_ZERO, enumerator
|
/external/mesa3d/src/mesa/swrast/ |
D | s_fragprog.c | 65 vector[SWIZZLE_ZERO] = 0.0F; in swizzle_texel()
|
D | s_texcombine.c | 566 vector[SWIZZLE_ZERO] = 0; in swizzle_texels()
|
/external/mesa3d/src/mesa/main/ |
D | format_parser.py | 135 SWIZZLE_ZERO = 4 variable in Swizzle
|
D | texparam.c | 201 return SWIZZLE_ZERO; in comp_to_swizzle()
|
/external/swiftshader/src/OpenGL/libGLESv2/ |
D | utilities.cpp | 2218 case GL_ZERO: return sw::SWIZZLE_ZERO; in ConvertSwizzleType()
|
/external/swiftshader/src/Pipeline/ |
D | SamplerCore.cpp | 30 case sw::SWIZZLE_ZERO: s = sw::Short4(0x0000); break; in applySwizzle() 44 case sw::SWIZZLE_ZERO: f = sw::Float4(0.0f, 0.0f, 0.0f, 0.0f); break; in applySwizzle()
|
/external/swiftshader/src/Shader/ |
D | SamplerCore.cpp | 30 case sw::SWIZZLE_ZERO: s = sw::Short4(0x0000); break; in applySwizzle() 44 case sw::SWIZZLE_ZERO: f = sw::Float4(0.0f, 0.0f, 0.0f, 0.0f); break; in applySwizzle()
|