Searched refs:is_int10 (Results 1 – 6 of 6) sorted by relevance
/external/mesa3d/src/gallium/drivers/radeonsi/ |
D | si_shader_llvm_ps.c | 286 bool is_int8, is_int10; in si_llvm_init_ps_export_args() local 292 is_int10 = (key->part.ps.epilog.color_is_int10 >> cbuf) & 0x1; in si_llvm_init_ps_export_args() 404 packed = packi(&ctx->ac, pack_args, is_int8 ? 8 : is_int10 ? 10 : 16, chan == 1); in si_llvm_init_ps_export_args()
|
/external/mesa3d/src/amd/vulkan/ |
D | radv_shader.h | 105 uint32_t is_int10; member
|
D | radv_pipeline.c | 512 unsigned col_format = 0, is_int8 = 0, is_int10 = 0; in radv_pipeline_compute_spi_color_formats() local 533 is_int10 |= 1 << i; in radv_pipeline_compute_spi_color_formats() 567 blend->col_format_is_int10 = is_int10; in radv_pipeline_compute_spi_color_formats() 599 bool is_int10 = format_is_int10(format); in radv_format_meta_fs_key() local 601 return col_format + (is_int8 ? 3 : is_int10 ? 5 : 0); in radv_format_meta_fs_key() 2577 key.is_int10 = blend->col_format_is_int10; in radv_generate_graphics_pipeline_key() 2686 keys[MESA_SHADER_FRAGMENT].fs.is_int10 = key->is_int10; in radv_fill_shader_keys()
|
D | radv_nir_to_llvm.c | 1390 bool is_int10 = (ctx->args->options->key.fs.is_int10 >> index) & 1; in si_llvm_init_export_args() local 1524 is_int8 ? 8 : is_int10 ? 10 : 16, in si_llvm_init_export_args()
|
D | radv_private.h | 401 uint32_t is_int10; member
|
/external/mesa3d/src/amd/compiler/ |
D | aco_instruction_selection.cpp | 10372 bool is_int10 = (ctx->options->key.fs.is_int10 >> slot) & 1; in export_fs_mrt_color() local 10458 if (is_int8 || is_int10) { in export_fs_mrt_color() 10460 uint32_t max_rgb = is_int8 ? 255 : is_int10 ? 1023 : 0; in export_fs_mrt_color() 10466 i == 3 && is_int10 ? Operand(3u) : Operand(max_rgb_val), in export_fs_mrt_color() 10483 if (is_int8 || is_int10) { in export_fs_mrt_color() 10485 uint32_t max_rgb = is_int8 ? 127 : is_int10 ? 511 : 0; in export_fs_mrt_color() 10486 uint32_t min_rgb = is_int8 ? -128 :is_int10 ? -512 : 0; in export_fs_mrt_color() 10493 i == 3 && is_int10 ? Operand(1u) : Operand(max_rgb_val), in export_fs_mrt_color() 10496 i == 3 && is_int10 ? Operand(-2u) : Operand(min_rgb_val), in export_fs_mrt_color()
|