Home
last modified time | relevance | path

Searched refs:BITSET_LAST_BIT (Results 1 – 12 of 12) sorted by relevance

/third_party/mesa3d/src/panfrost/lib/
Dpan_shader.c317 info->attribute_count += BITSET_LAST_BIT(s->info.images_used); in GENX()
320 info->sampler_count = info->texture_count = BITSET_LAST_BIT(s->info.textures_used); in GENX()
/third_party/mesa3d/src/gallium/auxiliary/nir/
Dnir_to_tgsi_info.c789 info->file_max[TGSI_FILE_SAMPLER] = BITSET_LAST_BIT(nir->info.samplers_used) - 1; in nir_tgsi_scan_shader()
790 info->file_max[TGSI_FILE_SAMPLER_VIEW] = BITSET_LAST_BIT(nir->info.textures_used) - 1; in nir_tgsi_scan_shader()
793 info->file_max[TGSI_FILE_IMAGE] = BITSET_LAST_BIT(nir->info.images_used) - 1; in nir_tgsi_scan_shader()
/third_party/mesa3d/src/util/
Dbitset.h326 #define BITSET_LAST_BIT(x) __bitset_last_bit(x, ARRAY_SIZE(x)) macro
/third_party/mesa3d/src/gallium/drivers/crocus/
Dcrocus_program.c844 bt->sizes[CROCUS_SURFACE_GROUP_TEXTURE] = BITSET_LAST_BIT(info->textures_used); in crocus_setup_binding_table()
848 bt->sizes[CROCUS_SURFACE_GROUP_TEXTURE_GATHER] = BITSET_LAST_BIT(info->textures_used); in crocus_setup_binding_table()
3021 if ((old_info ? BITSET_LAST_BIT(old_info->textures_used) : 0) != in bind_shader_state()
3022 (new_info ? BITSET_LAST_BIT(new_info->textures_used) : 0)) { in bind_shader_state()
Dcrocus_state.c2605 unsigned count = info ? BITSET_LAST_BIT(info->textures_used) : 0; in crocus_upload_sampler_states()
/third_party/mesa3d/src/gallium/drivers/iris/
Diris_program.c917 bt->sizes[IRIS_SURFACE_GROUP_TEXTURE] = BITSET_LAST_BIT(info->textures_used); in iris_setup_binding_table()
2792 if ((old_info ? BITSET_LAST_BIT(old_info->textures_used) : 0) != in bind_shader_state()
2793 (new_info ? BITSET_LAST_BIT(new_info->textures_used) : 0)) { in bind_shader_state()
Diris_state.c2232 unsigned count = info ? BITSET_LAST_BIT(info->textures_used) : 0; in iris_upload_sampler_states()
/third_party/mesa3d/src/gallium/drivers/radeonsi/
Dsi_shader_llvm.c816 ctx->num_samplers = BITSET_LAST_BIT(info->base.textures_used); in si_llvm_translate_nir()
Dsi_state_shaders.cpp3127 num_msaa_images = align(BITSET_LAST_BIT(info->base.msaa_images), 2); in si_get_active_slot_masks()
3128 num_samplers = BITSET_LAST_BIT(info->base.textures_used); in si_get_active_slot_masks()
/third_party/mesa3d/src/freedreno/ir3/
Dir3_compiler_nir.c4386 BITSET_LAST_BIT(ctx->s->info.textures_used) + ctx->s->info.num_images; in emit_instructions()
/third_party/mesa3d/docs/relnotes/
D20.2.0.rst4569 - util: add BITSET_LAST_BIT() helper
D21.1.0.rst1553 - util/panfrost/glsl: rename BITSET_LAST_BIT to BITSET_LAST_BIT_SIZED