Home
last modified time | relevance | path

Searched refs:IsES (Results 1 – 6 of 6) sorted by relevance

/external/mesa3d/src/compiler/glsl/
Dlink_interface_blocks.cpp67 if (prog->IsES || prog->data->Version < 440) in interstage_member_mismatch()
86 if (!prog->IsES || prog->data->Version < 310) in interstage_member_mismatch()
90 if (!prog->IsES) in interstage_member_mismatch()
117 (!prog->IsES || in intrastage_match()
Dlinker.cpp592 if (prog->data->Version >= (prog->IsES ? 300 : 130)) { in analyze_clip_cull_usage()
609 !prog->IsES ? &gl_ClipVertex : NULL, in analyze_clip_cull_usage()
623 if (!prog->IsES) { in analyze_clip_cull_usage()
712 if (prog->data->Version < (prog->IsES ? 300 : 140)) { in validate_vertex_shader_executable()
716 if (prog->IsES) { in validate_vertex_shader_executable()
1117 if (prog->IsES && !var->get_interface_type() && in cross_validate_globals()
2851 if (target_index == MESA_SHADER_FRAGMENT && !prog->IsES) { in assign_attribute_or_color_locations()
2898 (prog->IsES && prog->data->Version >= 300)) { in assign_attribute_or_color_locations()
2910 if (target_index == MESA_SHADER_FRAGMENT && !prog->IsES) { in assign_attribute_or_color_locations()
4507 linker_error(prog, msg, prog->IsES ? "ES" : "", in validate_sampler_array_indexing()
[all …]
Dlink_varyings.cpp256 prog->data->Version < (prog->IsES ? 310 : 430) && in cross_validate_types_and_qualifiers()
311 prog->data->Version < (prog->IsES ? 300 : 430)) { in cross_validate_types_and_qualifiers()
341 if (prog->IsES) { in cross_validate_types_and_qualifiers()
2606 if (!prog->IsES && prog->data->Version <= 120) { in assign_varying_locations()
2685 if (ctx->API == API_OPENGLES2 || prog->IsES) in check_against_output_limit()
2729 if (ctx->API == API_OPENGLES2 || prog->IsES) in check_against_input_limit()
Dglsl_parser_extras.cpp2123 shader->IsES = state->es_shader; in _mesa_glsl_compile_shader()
/external/mesa3d/src/mesa/main/
Dmtypes.h2579 bool IsES; /**< True if this shader uses GLSL ES */ member
3028 bool IsES; /**< True if this program uses GLSL ES */ member
Dshaderapi.c1236 shProg->IsES ? " ES" : "", in link_program()