Home
last modified time | relevance | path

Searched refs:FRAG_RESULT_DATA0 (Results 1 - 25 of 87) sorted by relevance

1234

/third_party/mesa3d/src/compiler/nir/
H A Dnir_lower_fragcolor.c80 out->data.location = FRAG_RESULT_DATA0; in lower_fragcolor_instr()
83 b->shader->info.outputs_written |= BITFIELD64_BIT(FRAG_RESULT_DATA0); in lower_fragcolor_instr()
90 out_color->data.location = FRAG_RESULT_DATA0 + i; in lower_fragcolor_instr()
94 b->shader->info.outputs_written |= BITFIELD64_BIT(FRAG_RESULT_DATA0 + i); in lower_fragcolor_instr()
H A Dnir_lower_poly_line_smooth.c46 if ((location != FRAG_RESULT_COLOR && location < FRAG_RESULT_DATA0) || in lower_polylinesmooth()
H A Dnir_lower_point_smooth.c46 if ((location != FRAG_RESULT_COLOR && location < FRAG_RESULT_DATA0) || in lower_point_smooth()
H A Dnir_lower_alpha_test.c82 out->data.location != FRAG_RESULT_DATA0) in nir_lower_alpha_test()
H A Dnir_lower_clamp_color_outputs.c52 out->data.location >= FRAG_RESULT_DATA0); in is_color_output()
H A Dnir_lower_blend.c361 var->data.location < FRAG_RESULT_DATA0) in color_index_for_var()
365 (var->data.location - FRAG_RESULT_DATA0); in color_index_for_var()
/third_party/mesa3d/src/intel/compiler/
H A Dbrw_nir_lower_alpha_to_coverage.c89 BITFIELD64_BIT(FRAG_RESULT_DATA0)))) in brw_nir_lower_alpha_to_coverage()
128 location == FRAG_RESULT_DATA0) { in brw_nir_lower_alpha_to_coverage()
/third_party/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_from_mesa.c188 if (frag_result >= FRAG_RESULT_DATA0) { in tgsi_get_gl_frag_result_semantic()
190 *semantic_index = frag_result - FRAG_RESULT_DATA0; in tgsi_get_gl_frag_result_semantic()
/third_party/mesa3d/src/panfrost/lib/
H A Dpan_shader.c253 info->fs.outputs_read = s->info.outputs_read >> FRAG_RESULT_DATA0; in pan_shader_compile()
254 info->fs.outputs_written = s->info.outputs_written >> FRAG_RESULT_DATA0; in pan_shader_compile()
H A Dpan_blitter.c486 unsigned ncomps = key->surfaces[i].loc >= FRAG_RESULT_DATA0 ? 4 : 1; in pan_blitter_get_blit_shader()
595 if (key->surfaces[i].loc >= FRAG_RESULT_DATA0) { in pan_blitter_get_blit_shader()
680 key.surfaces[i].loc = FRAG_RESULT_DATA0 + i; in pan_blitter_get_key()
1648 .loc = FRAG_RESULT_DATA0, in pan_blitter_prefill_blit_shader_cache()
/third_party/mesa3d/src/gallium/drivers/radeonsi/
H A Dsi_shader_info.c281 semantic = FRAG_RESULT_DATA0; in scan_io_usage()
361 semantic >= FRAG_RESULT_DATA0 && semantic <= FRAG_RESULT_DATA7) { in scan_io_usage()
362 unsigned index = semantic - FRAG_RESULT_DATA0; in scan_io_usage()
656 info->colors_written = nir->info.outputs_written >> FRAG_RESULT_DATA0; in si_nir_scan_shader()
/third_party/mesa3d/src/panfrost/util/
H A Dpan_lower_writeout.c164 if (var->data.location < FRAG_RESULT_DATA0) in pan_nir_lower_zs_store()
H A Dpan_lower_framebuffer.c581 if (var->data.location < FRAG_RESULT_DATA0) in pan_lower_framebuffer()
585 unsigned rt = var->data.location - FRAG_RESULT_DATA0; in pan_lower_framebuffer()
/third_party/mesa3d/src/compiler/
H A Dshader_enums.h910 FRAG_RESULT_DATA0 = 4, enumerator
922 #define FRAG_RESULT_MAX (FRAG_RESULT_DATA0 + MAX_DRAW_BUFFERS)
H A Dshader_enums.c369 ENUM(FRAG_RESULT_DATA0), in gl_frag_result_name()
/third_party/mesa3d/src/broadcom/compiler/
H A Dv3d_nir_lower_logic_ops.c371 (loc < FRAG_RESULT_DATA0 || in v3d_nir_lower_logic_ops_block()
372 loc >= FRAG_RESULT_DATA0 + V3D_MAX_DRAW_BUFFERS)) { in v3d_nir_lower_logic_ops_block()
/third_party/mesa3d/src/gallium/auxiliary/nir/
H A Dnir_draw_helpers.c171 if (var->data.location < FRAG_RESULT_DATA0 && var->data.location != FRAG_RESULT_COLOR) in nir_lower_aaline_block()
266 if (var->data.location < FRAG_RESULT_DATA0 && var->data.location != FRAG_RESULT_COLOR) in nir_lower_aapoint_block()
/third_party/mesa3d/src/gallium/drivers/svga/
H A Dsvga_tgsi.c384 return FRAG_RESULT_DATA0; in svga_tgsi_to_gl_frag_result_semantic()
391 return FRAG_RESULT_DATA0; in svga_tgsi_to_gl_frag_result_semantic()
/third_party/mesa3d/src/microsoft/compiler/
H A Ddxil_signature.c245 case FRAG_RESULT_DATA0: in get_semantic_ps_outname()
254 info->index = var->data.location - FRAG_RESULT_DATA0; in get_semantic_ps_outname()
255 if (var->data.location == FRAG_RESULT_DATA0 && in get_semantic_ps_outname()
/third_party/mesa3d/src/gallium/drivers/asahi/
H A Dagx_blit.c39 out->data.location = FRAG_RESULT_DATA0; in agx_build_reload_shader()
/third_party/mesa3d/src/gallium/drivers/etnaviv/
H A Detnaviv_nir.c69 deref->var->data.location != FRAG_RESULT_DATA0) in etna_lower_io()
/third_party/mesa3d/src/compiler/glsl/
H A Dlower_blend_equation_advanced.cpp481 fb->data.location = FRAG_RESULT_DATA0; in lower_blend_equation_advanced()
514 if (var->data.location == FRAG_RESULT_DATA0 || in lower_blend_equation_advanced()
/third_party/mesa3d/src/microsoft/vulkan/
H A Ddzn_meta.c657 assert(key->loc == FRAG_RESULT_DATA0 || in dzn_meta_blit_create()
661 if (key->loc == FRAG_RESULT_DATA0) { in dzn_meta_blit_create()
/third_party/mesa3d/src/compiler/glsl/tests/
H A Dbuiltin_variable_test.cpp277 /* gl_FragData[] has location FRAG_RESULT_DATA0. Locations beyond that in TEST_F()
280 EXPECT_GE(FRAG_RESULT_DATA0, var->data.location); in TEST_F()
/third_party/mesa3d/src/asahi/compiler/
H A Dagx_compile.c344 assert(loc == FRAG_RESULT_DATA0 && "todo: MRT"); in agx_emit_fragment_out()
345 unsigned rt = (loc - FRAG_RESULT_DATA0); in agx_emit_fragment_out()
381 assert(loc == FRAG_RESULT_DATA0 && "todo: MRT"); in agx_emit_load_tile()
382 unsigned rt = (loc - FRAG_RESULT_DATA0); in agx_emit_load_tile()

Completed in 24 milliseconds

1234