Searched refs:IsES (Results 1 – 16 of 16) sorted by relevance
/third_party/mesa3d/src/compiler/glsl/ |
D | link_interface_blocks.cpp | 72 if (prog->IsES || prog->data->Version < 440) in interstage_member_mismatch() 91 if (!prog->IsES || prog->data->Version < 310) in interstage_member_mismatch() 95 if (!prog->IsES) in interstage_member_mismatch() 122 (prog->IsES ? in intrastage_match() 134 (!prog->IsES || in intrastage_match() 459 if (prog->SeparateShader && !prog->IsES && prog->data->Version >= 150 && in validate_interstage_inout_blocks() 480 if (prog->SeparateShader && !prog->IsES && prog->data->Version >= 150 && in validate_interstage_inout_blocks()
|
D | linker.cpp | 532 if (prog->data->Version >= (prog->IsES ? 300 : 130)) { in analyze_clip_cull_usage() 549 !prog->IsES ? &gl_ClipVertex : NULL, in analyze_clip_cull_usage() 563 if (!prog->IsES) { in analyze_clip_cull_usage() 652 if (prog->data->Version < (prog->IsES ? 300 : 140)) { in validate_vertex_shader_executable() 656 if (prog->IsES) { in validate_vertex_shader_executable() 1067 prog->IsES && !var->get_interface_type() && in cross_validate_globals() 2925 if (target_index == MESA_SHADER_FRAGMENT && !prog->IsES) { in assign_attribute_or_color_locations() 2972 (prog->IsES && prog->data->Version >= 300)) { in assign_attribute_or_color_locations() 2984 if (target_index == MESA_SHADER_FRAGMENT && !prog->IsES) { in assign_attribute_or_color_locations() 3614 prog->Shaders[i]->IsES != prog->Shaders[0]->IsES) { in link_shaders() [all …]
|
D | link_varyings.cpp | 151 prog->data->Version < (prog->IsES ? 310 : 430) && in cross_validate_types_and_qualifiers() 206 prog->data->Version < (prog->IsES ? 300 : 420)) { in cross_validate_types_and_qualifiers() 236 if (prog->IsES) { in cross_validate_types_and_qualifiers() 645 return prog->data->Version >= (prog->IsES ? 0 : 420); in static_input_output_matching()
|
D | gl_nir_linker.c | 905 linker_error(prog, msg, prog->IsES ? "ES" : "", in validate_sampler_array_indexing() 909 linker_warning(prog, msg, prog->IsES ? "ES" : "", in validate_sampler_array_indexing() 934 if ((!prog->IsES && prog->data->Version < 130) || in gl_nir_link_glsl() 935 (prog->IsES && prog->data->Version < 300)) { in gl_nir_link_glsl()
|
D | gl_nir_link_varyings.c | 2211 if (!prog->IsES && prog->data->Version <= 120) { in remove_unused_io_vars() 2416 if (!prog->IsES || producer->Stage != MESA_SHADER_TESS_CTRL) { in assign_initial_varying_locations() 2832 if (api == API_OPENGLES2 || prog->IsES) in check_against_output_limit() 2873 if (api == API_OPENGLES2 || prog->IsES) in check_against_input_limit()
|
D | serialize.cpp | 1263 blob_write_uint32(blob, prog->IsES); in serialize_glsl_program() 1322 prog->IsES = blob_read_uint32(blob); in deserialize_glsl_program()
|
D | glsl_parser_extras.cpp | 2296 shader->IsES = state->es_shader; in _mesa_glsl_compile_shader()
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/opengl/ |
D | OpenGLFunctions.cpp | 23 if (mVersion.IsES()) { in Initialize() 58 return mVersion.IsES() && mVersion.IsAtLeast(majorVersion, minorVersion); in IsAtLeastGLES()
|
D | OpenGLVersion.h | 27 bool IsES() const;
|
D | OpenGLVersion.cpp | 60 bool OpenGLVersion::IsES() const { in IsES() function in dawn_native::opengl::OpenGLVersion
|
D | DeviceGL.cpp | 101 SetToggle(Toggle::FlushBeforeClientWaitSync, gl.GetVersion().IsES()); in InitTogglesFromDriver() 103 SetToggle(Toggle::UseDummyFragmentInVertexOnlyPipeline, gl.GetVersion().IsES()); in InitTogglesFromDriver()
|
D | BackendGL.cpp | 141 if (mFunctions.GetVersion().IsES()) { in InitializeImpl()
|
D | ShaderModuleGL.cpp | 304 options.es = version.IsES(); in TranslateToGLSL()
|
/third_party/mesa3d/src/mesa/main/ |
D | shader_types.h | 153 bool IsES; /**< True if this shader uses GLSL ES */ member 476 bool IsES; /**< True if this program uses GLSL ES */ member
|
D | shaderapi.c | 1390 shProg->IsES ? " ES" : "", in link_program()
|
/third_party/mesa3d/docs/relnotes/ |
D | 20.1.0.rst | 1632 - glsl: Restore the IsES flag on the shader when reading from cache.
|