Lines Matching defs:version

44  * Format a short human-readable description of the given GLSL version.
47 glsl_compute_version_string(void *mem_ctx, bool is_es, unsigned version)
50 version / 100, version % 100);
82 /* Set default language version and extensions */
341 * Determine whether the current GLSL version is sufficiently high to support
350 * message to report if the version check fails. Information about the
352 * the GLSL version being compiled is 1.20, and check_version(130, 300, locp,
418 * the version is invalid.
437 * Process a GLSL #version directive.
439 * \param version is the integer that follows the #version token.
445 _mesa_glsl_parse_state::process_version_directive(YYLTYPE *locp, int version,
453 } else if (version >= 150) {
473 "illegal text following version number");
478 if (version == 100) {
482 "`#version 100'");
495 this->language_version = version;
602 gl_api api, uint8_t version);
631 has_##name_str(const struct gl_extensions *exts, gl_api api, uint8_t version) \
633 return exts->driver_cap && (version >= \
634 _mesa_extension_table[MESA_EXTENSION_##name_str].version[api]); \
858 /* Use the language-version derived GL version to extension checks, unless
859 * we're using meta, which sets the version to the max.
1028 "#version 430 / GL_ARB_shader_storage_buffer_object "
1032 "#version 430 / GL_ARB_shader_storage_buffer_object "
1038 "#version 140 / GL_ARB_uniform_buffer_object "
1042 "#version 140 / GL_ARB_uniform_buffer_object "
1049 "GL_OES_shader_io_blocks or #version 320 "
1053 "#version 150 required for using "
1075 * version-check both things.
2055 unsigned version,
2064 if (state->supported_versions[i].ver == version &&