Home
last modified time | relevance | path

Searched refs:input_patch_size (Results 1 – 6 of 6) sorted by relevance

/third_party/vk-gl-cts/external/openglcts/modules/glesext/tessellation_shader/
DesextcTessellationShaderTCTE.hpp480 unsigned int input_patch_size; member
490 input_patch_size = 0; in _test_descriptor()
501 unsigned int input_patch_size);
DesextcTessellationShaderTCTE.cpp3901 unsigned int input_patch_size) in initTestDescriptor() argument
3903 out_test_ptr->input_patch_size = input_patch_size; in initTestDescriptor()
3963 vertices_stringstream << input_patch_size; in initTestDescriptor()
4120 gl.patchParameteri(m_glExtTokens.PATCH_VERTICES, test_iterator->input_patch_size); in iterate()
4123 n_patch_vertices = test_iterator->input_patch_size; in iterate()
4167 if (te_PatchVerticesInSize != test_iterator->input_patch_size) in iterate()
4171 << " expected:" << test_iterator->input_patch_size in iterate()
/third_party/mesa3d/src/amd/vulkan/
Dradv_shader.h633 unsigned input_patch_size = tcs_num_input_vertices * input_vertex_size; in calculate_tess_lds_size() local
638 unsigned output_patch0_offset = input_patch_size * tcs_num_patches; in calculate_tess_lds_size()
660 uint32_t input_patch_size = tcs_num_input_vertices * input_vertex_size; in get_tcs_num_patches() local
683 if (input_patch_size + output_patch_size) in get_tcs_num_patches()
684 num_patches = MIN2(num_patches, hardware_lds_size / (input_patch_size + output_patch_size)); in get_tcs_num_patches()
/third_party/mesa3d/src/gallium/drivers/radeonsi/
Dsi_state_draw.cpp662 unsigned input_patch_size; in si_emit_derived_tess_state() local
667 input_patch_size = num_tcs_input_cp * input_vertex_size; in si_emit_derived_tess_state()
669 input_patch_size = 0; in si_emit_derived_tess_state()
683 lds_per_patch = input_patch_size + output_patch_size; in si_emit_derived_tess_state()
686 lds_per_patch = MAX2(input_patch_size, output_patch_size); in si_emit_derived_tess_state()
758 unsigned output_patch0_offset = input_patch_size * *num_patches; in si_emit_derived_tess_state()
764 assert(((input_patch_size / 4) & ~0x1fff) == 0); in si_emit_derived_tess_state()
795 SET_FIELD(sctx->current_vs_state, VS_STATE_LS_OUT_PATCH_SIZE, input_patch_size / 4); in si_emit_derived_tess_state()
/third_party/mesa3d/src/amd/common/
Dac_nir_lower_tess_io_to_mem.c346 nir_ssa_def *input_patch_size = in hs_output_lds_offset() local
348 nir_ssa_def *output_patch0_offset = nir_imul(b, input_patch_size, tcs_num_patches); in hs_output_lds_offset()
/third_party/mesa3d/src/gallium/drivers/r600/
Devergreen_state.c4536 unsigned input_patch_size, pervertex_output_patch_size, output_patch_size; in evergreen_setup_tess_constants() local
4578 input_patch_size = num_tcs_input_cp * input_vertex_size; in evergreen_setup_tess_constants()
4583 output_patch0_offset = rctx->tcs_shader ? input_patch_size * *num_patches : 0; in evergreen_setup_tess_constants()
4588 values[0] = input_patch_size; in evergreen_setup_tess_constants()