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 || prog->data->Version != 310 || in intrastage_match()
Dlinker.cpp556 if (prog->data->Version >= (prog->IsES ? 300 : 130)) { in analyze_clip_cull_usage()
582 if (!prog->IsES) { in analyze_clip_cull_usage()
675 if (prog->data->Version < (prog->IsES ? 300 : 140)) { in validate_vertex_shader_executable()
679 if (prog->IsES) { in validate_vertex_shader_executable()
1092 if (prog->IsES && (prog->data->Version != 310 || in cross_validate_globals()
2779 if (target_index == MESA_SHADER_FRAGMENT && !prog->IsES) { in assign_attribute_or_color_locations()
2826 (prog->IsES && prog->data->Version >= 300)) { in assign_attribute_or_color_locations()
4394 linker_error(prog, msg, prog->IsES ? "ES" : "", in validate_sampler_array_indexing()
4398 linker_warning(prog, msg, prog->IsES ? "ES" : "", in validate_sampler_array_indexing()
4818 if (prog->Shaders[i]->IsES != prog->Shaders[0]->IsES) { in link_shaders()
[all …]
Dlink_varyings.cpp274 prog->data->Version < (prog->IsES ? 310 : 430) && in cross_validate_types_and_qualifiers()
329 prog->data->Version < (prog->IsES ? 300 : 430)) { in cross_validate_types_and_qualifiers()
2235 if (!prog->IsES && prog->data->Version <= 120) { in assign_varying_locations()
2314 if (ctx->API == API_OPENGLES2 || prog->IsES) in check_against_output_limit()
2358 if (ctx->API == API_OPENGLES2 || prog->IsES) in check_against_input_limit()
Dglsl_parser_extras.cpp2000 shader->IsES = state->es_shader; in _mesa_glsl_compile_shader()
/external/mesa3d/src/mesa/main/
Dmtypes.h2418 bool IsES; /**< True if this shader uses GLSL ES */ member
2849 bool IsES; /**< True if this program uses GLSL ES */ member
Dshaderapi.c1113 shProg->IsES ? " ES" : "", in _mesa_link_program()