Home
last modified time | relevance | path

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

/third_party/mesa3d/src/amd/vulkan/
Dradv_meta.c167 state->dynamic.fragment_shading_rate.combiner_ops[0] = in radv_meta_save()
168 cmd_buffer->state.dynamic.fragment_shading_rate.combiner_ops[0]; in radv_meta_save()
169 state->dynamic.fragment_shading_rate.combiner_ops[1] = in radv_meta_save()
170 cmd_buffer->state.dynamic.fragment_shading_rate.combiner_ops[1]; in radv_meta_save()
297 cmd_buffer->state.dynamic.fragment_shading_rate.combiner_ops[0] = in radv_meta_restore()
298 state->dynamic.fragment_shading_rate.combiner_ops[0]; in radv_meta_restore()
299 cmd_buffer->state.dynamic.fragment_shading_rate.combiner_ops[1] = in radv_meta_restore()
300 state->dynamic.fragment_shading_rate.combiner_ops[1]; in radv_meta_restore()
Dradv_pipeline.c105 info->fsr.combiner_ops[0] != VK_FRAGMENT_SHADING_RATE_COMBINER_OP_KEEP_KHR || in radv_is_static_vrs_enabled()
106 info->fsr.combiner_ops[1] != VK_FRAGMENT_SHADING_RATE_COMBINER_OP_KEEP_KHR; in radv_is_static_vrs_enabled()
1906 info.combiner_ops[i] = shading_rate->combinerOps[i]; in radv_pipeline_init_fragment_shading_rate_info()
1909 info.combiner_ops[0] = VK_FRAGMENT_SHADING_RATE_COMBINER_OP_KEEP_KHR; in radv_pipeline_init_fragment_shading_rate_info()
1910 info.combiner_ops[1] = VK_FRAGMENT_SHADING_RATE_COMBINER_OP_KEEP_KHR; in radv_pipeline_init_fragment_shading_rate_info()
2120 dynamic->fragment_shading_rate.combiner_ops[i] = info->fsr.combiner_ops[i]; in radv_pipeline_init_dynamic_state()
Dradv_private.h1314 VkFragmentShadingRateCombinerOpKHR combiner_ops[2]; member
2075 VkFragmentShadingRateCombinerOpKHR combiner_ops[2]; member
Dradv_cmd_buffer.c114 .combiner_ops = {VK_FRAGMENT_SHADING_RATE_COMBINER_OP_KEEP_KHR,
1870 uint32_t pipeline_comb_mode = d->fragment_shading_rate.combiner_ops[0]; in radv_emit_fragment_shading_rate()
1871 uint32_t htile_comb_mode = d->fragment_shading_rate.combiner_ops[1]; in radv_emit_fragment_shading_rate()
5969 state->dynamic.fragment_shading_rate.combiner_ops[i] = combinerOps[i]; in radv_CmdSetFragmentShadingRateKHR()
7637 … d->fragment_shading_rate.combiner_ops[0] == VK_FRAGMENT_SHADING_RATE_COMBINER_OP_KEEP_KHR && in radv_emit_all_graphics_states()
7638 … d->fragment_shading_rate.combiner_ops[1] == VK_FRAGMENT_SHADING_RATE_COMBINER_OP_KEEP_KHR) { in radv_emit_all_graphics_states()
/third_party/mesa3d/src/intel/vulkan/
DgenX_state.c532 static const uint32_t combiner_ops[] = { in genX() local
540 cps_state.Combiner0OpcodeforCPsize = combiner_ops[op0]; in genX()
541 cps_state.Combiner1OpcodeforCPsize = combiner_ops[op1]; in genX()
573 fsr->combiner_ops[0] * 5 * 3 * 3 + in get_cps_state_offset()
574 fsr->combiner_ops[1] * 3 * 3 + in get_cps_state_offset()
Danv_pipeline.c407 fsr->combiner_ops[0] == VK_FRAGMENT_SHADING_RATE_COMBINER_OP_KEEP_KHR && in pipeline_has_coarse_pixel()
408 fsr->combiner_ops[1] == VK_FRAGMENT_SHADING_RATE_COMBINER_OP_KEEP_KHR) in pipeline_has_coarse_pixel()
/third_party/mesa3d/src/vulkan/runtime/
Dvk_graphics_state.c547 fsr->combiner_ops[0] = fsr_info->combinerOps[0]; in vk_fragment_shading_rate_state_init()
548 fsr->combiner_ops[1] = fsr_info->combinerOps[1]; in vk_fragment_shading_rate_state_init()
551 fsr->combiner_ops[0] = VK_FRAGMENT_SHADING_RATE_COMBINER_OP_KEEP_KHR; in vk_fragment_shading_rate_state_init()
552 fsr->combiner_ops[1] = VK_FRAGMENT_SHADING_RATE_COMBINER_OP_KEEP_KHR; in vk_fragment_shading_rate_state_init()
1387 .combiner_ops = {
1576 COPY_IF_SET(FSR, fsr.combiner_ops[0]); in vk_dynamic_graphics_state_copy()
1577 COPY_IF_SET(FSR, fsr.combiner_ops[1]); in vk_dynamic_graphics_state_copy()
1908 SET_DYN_VALUE(dyn, FSR, fsr.combiner_ops[0], combinerOps[0]); in vk_common_CmdSetFragmentShadingRateKHR()
1909 SET_DYN_VALUE(dyn, FSR, fsr.combiner_ops[1], combinerOps[1]); in vk_common_CmdSetFragmentShadingRateKHR()
Dvk_graphics_state.h262 VkFragmentShadingRateCombinerOpKHR combiner_ops[2]; member