| /xsrc/external/mit/MesaLib/dist/src/compiler/nir/ |
| nir_lower_samplers.c | 37 bool is_sampler = src->src_type == nir_tex_src_sampler_deref; local 103 src->src_type = is_sampler ? 110 if (is_sampler) {
|
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/ |
| gl_nir_lower_samplers.c | 42 bool is_sampler = src->src_type == nir_tex_src_sampler_deref; local 88 src->src_type = is_sampler ? 97 if (is_sampler) {
|
| link_uniform_initializers.cpp | 145 if (storage->type->is_sampler()) { 246 if (storage->type->is_sampler()) { 286 if (type->without_array()->is_sampler() ||
|
| ast_array_index.cpp | 308 if (array->type->without_array()->is_sampler()) {
|
| opt_tree_grafting.cpp | 382 if (lhs_var->type->is_sampler() || lhs_var->type->is_image())
|
| ast_to_hir.cpp | 1862 if (!(state->has_bindless() && (type->is_image() || type->is_sampler()))) { 2452 const unsigned offset = type->is_sampler() ? 0 : 4; 2458 assert(type->is_sampler()); 2489 assert(type->is_sampler()); 2496 assert(type->is_sampler()); 2510 assert(type->is_sampler()); 2523 assert(type->is_sampler()); 2551 assert(type->is_sampler()); 2558 assert(type->is_sampler()); 2578 assert(type->is_sampler()); [all...] |
| ast_function.cpp | 2035 (state->has_bindless() && (type->is_sampler() || type->is_image())); 2266 if (ir->type->is_sampler() || ir->type->is_image()) { 2276 } else if (constructor_type->is_sampler() ||
|
| /xsrc/external/mit/MesaLib/dist/src/compiler/glsl/ |
| link_uniform_initializers.cpp | 145 if (storage->type->is_sampler()) { 246 if (storage->type->is_sampler()) { 290 } else if (type->without_array()->is_sampler() ||
|
| ast_array_index.cpp | 308 if (array->type->without_array()->is_sampler()) {
|
| opt_tree_grafting.cpp | 382 if (lhs_var->type->is_sampler() || lhs_var->type->is_image())
|
| ast_to_hir.cpp | 1902 if (!(state->has_bindless() && (type->is_image() || type->is_sampler()))) { 2492 const unsigned offset = type->is_sampler() ? 0 : 4; 2498 assert(type->is_sampler()); 2529 assert(type->is_sampler()); 2536 assert(type->is_sampler()); 2550 assert(type->is_sampler()); 2563 assert(type->is_sampler()); 2591 assert(type->is_sampler()); 2598 assert(type->is_sampler()); 2618 assert(type->is_sampler()); [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/i965/ |
| brw_nir_uniforms.cpp | 153 if (var->type->without_array()->is_sampler()) 179 storage->type->is_sampler() ||
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/main/ |
| uniform_query.cpp | 328 if ((uni->type->is_sampler() || uni->type->is_image()) && 367 (uni->type->is_sampler() || uni->type->is_image())) || 979 if (uni->type->is_sampler()) { 1131 if (!uni->type->is_sampler()) { 1158 if (uni->type->is_sampler()) { 1319 assert(!uni->type->is_sampler()); 1541 if (uni->type->is_sampler()) {
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/main/ |
| uniform_query.cpp | 353 if ((uni->type->is_sampler() || uni->type->is_image()) && 400 (uni->type->is_sampler() || uni->type->is_image())) || 1050 if (uni->type->is_sampler()) { 1092 if (!uni->type->is_sampler()) 1121 (uni->type->is_sampler() || uni->type->is_image()); 1346 if (!ctx_flushed && !(uni->type->is_sampler() && uni->is_bindless)) 1352 if (uni->type->is_sampler()) { 1700 assert(!uni->type->is_sampler()); 1939 if (uni->type->is_sampler()) {
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/i965/ |
| brw_nir_uniforms.cpp | 153 if (var->type->without_array()->is_sampler()) 179 storage->type->is_sampler() ||
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/zink/nir_to_spirv/ |
| nir_to_spirv.c | 806 get_bare_image_type(struct ntv_context *ctx, struct nir_variable *var, bool is_sampler) 814 } else if (!is_sampler && !var->data.image.format) { 830 is_ms, is_sampler ? 1 : 2, 835 get_image_type(struct ntv_context *ctx, struct nir_variable *var, bool is_sampler) 837 SpvId image_type = get_bare_image_type(ctx, var, is_sampler); 838 return is_sampler ? spirv_builder_type_sampled_image(&ctx->builder, image_type) : image_type; 848 bool is_sampler = glsl_type_is_sampler(type); local 849 SpvId image_type = get_bare_image_type(ctx, var, is_sampler); 850 SpvId var_type = is_sampler ? spirv_builder_type_sampled_image(&ctx->builder, image_type) : image_type; 853 assert(!is_sampler || (!(ctx->samplers_used & (1 << index)))) [all...] |
| /xsrc/external/mit/MesaLib/dist/src/compiler/ |
| glsl_types.h | 939 bool is_sampler() const function in struct:glsl_type
|
| nir_types.cpp | 340 return type->is_sampler();
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r600/sfn/ |
| sfn_instruction_tex.cpp | 229 if (var->type->is_sampler()) {
|
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/ |
| glsl_types.h | 687 bool is_sampler() const function in struct:glsl_type
|
| nir_types.cpp | 315 return type->is_sampler();
|
| /xsrc/external/mit/MesaLib/dist/src/freedreno/vulkan/ |
| tu_shader.c | 332 build_bindless(nir_builder *b, nir_deref_instr *deref, bool is_sampler, 370 if (is_sampler && bind_layout->type ==
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/ |
| st_glsl_to_nir.cpp | 211 if (!uniform->data.bindless && (type->is_sampler() || type->is_image())) { 212 if (type->is_sampler()) {
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/state_tracker/ |
| st_glsl_to_nir.cpp | 259 if (!uniform->data.bindless && (type->is_sampler() || type->is_image())) { 260 if (type->is_sampler()) {
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/clover/nir/ |
| invocation.cpp | 402 return !(var->type->is_sampler() || var->type->is_image());
|