Home
last modified time | relevance | path

Searched refs:SamplersUsed (Results 1 – 22 of 22) sorted by relevance

/external/mesa3d/src/mesa/state_tracker/
Dst_atom_texture.c107 GLbitfield samplers_used = prog->SamplersUsed; in update_textures()
109 GLbitfield free_slots = ~prog->SamplersUsed; in update_textures()
Dst_atom_sampler.c265 GLbitfield samplers_used = prog->SamplersUsed; in update_shader_samplers()
266 GLbitfield free_slots = ~prog->SamplersUsed; in update_shader_samplers()
Dst_program.c882 if (stfp->Base.SamplersUsed) in st_translate_fragment_program()
1276 variant->bitmap_sampler = ffs(~stfp->Base.SamplersUsed) - 1; in st_create_fp_variant()
1287 unsigned samplers_used = stfp->Base.SamplersUsed; in st_create_fp_variant()
1349 ~stfp->Base.SamplersUsed, in st_create_fp_variant()
1410 variant->bitmap_sampler = ffs(~stfp->Base.SamplersUsed) - 1; in st_create_fp_variant()
1433 variant->drawpix_sampler = ffs(~stfp->Base.SamplersUsed) - 1; in st_create_fp_variant()
1436 unsigned samplers_used = stfp->Base.SamplersUsed | in st_create_fp_variant()
1473 ~stfp->Base.SamplersUsed, in st_create_fp_variant()
Dst_atifs_to_tgsi.c500 if (program->SamplersUsed & (1 << i)) { in st_translate_atifs_program()
556 prog->SamplersUsed = 0; in st_init_atifs_prog()
569 prog->SamplersUsed |= (1 << r); in st_init_atifs_prog()
Dst_mesa_to_tgsi.c1054 if (program->SamplersUsed & (1u << i)) { in st_translate_mesa_program()
Dst_glsl_to_tgsi.cpp4831 prog->SamplersUsed = v->samplers_used; in count_resources()
/external/mesa3d/src/mesa/program/
Darbprogparse.c117 program->SamplersUsed |= (1 << i); in _mesa_parse_arb_fragment_program()
Dprog_print.c890 prog->SamplersUsed, binary(prog->SamplersUsed)); in _mesa_fprint_program_parameters()
Dprogram.c544 GLbitfield mask = prog->SamplersUsed; in gl_external_samplers()
Dprog_to_nir.c999 s->info.num_textures = util_last_bit(prog->SamplersUsed); in prog_to_nir()
/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_cs.c194 util_last_bit(ctx->ComputeProgram._Current->SamplersUsed); in brw_upload_cs_prog()
Dbrw_program.c829 unsigned sampler_count = util_last_bit(prog->SamplersUsed); in brw_setup_tex_for_precompile()
856 int num_textures = util_last_bit(prog->SamplersUsed); in brw_assign_common_binding_table_offsets()
Dbrw_wm.c196 GLbitfield mask = prog->SamplersUsed; in brw_populate_sampler_prog_key_data()
DgenX_state_upload.c5390 GLbitfield SamplersUsed = prog->SamplersUsed; local
5405 if (SamplersUsed & (1 << s)) {
/external/mesa3d/src/mesa/main/
Dtexstate.c730 mask = prog[i]->SamplersUsed; in update_program_texture_state()
852 GLbitfield mask = prog->SamplersUsed; in fix_missing_textures_for_atifs()
Duniform_query.cpp1641 mask = prog[idx]->SamplersUsed; in _mesa_sampler_uniforms_pipeline_are_valid()
Dmtypes.h2118 GLbitfield SamplersUsed; member
Duniforms.c103 GLbitfield mask = prog->SamplersUsed; in _mesa_update_shader_textures_used()
/external/mesa3d/src/compiler/glsl/
Dserialize.cpp1093 blob_write_uint64(metadata, glprog->SamplersUsed); in write_shader_metadata()
1148 glprog->SamplersUsed = blob_read_uint64(metadata); in read_shader_metadata()
Dlink_uniforms.cpp1628 shader->Program->SamplersUsed = parcel.shader_samplers_used; in link_assign_uniform_storage()
Dgl_nir_link_uniforms.c1850 sh->Program->SamplersUsed = state.shader_samplers_used; in gl_nir_link_uniforms()
/external/mesa3d/docs/relnotes/
D19.1.0.rst2532 - i965: Use info->textures_used instead of prog->SamplersUsed.