2010-07-15 07:52:32 +04:00
|
|
|
//
|
2013-09-07 04:24:36 +04:00
|
|
|
// Copyright (c) 2002-2013 The ANGLE Project Authors. All rights reserved.
|
2010-07-15 07:52:32 +04:00
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
//
|
|
|
|
#ifndef _COMPILER_INTERFACE_INCLUDED_
|
|
|
|
#define _COMPILER_INTERFACE_INCLUDED_
|
|
|
|
|
2014-07-04 19:49:25 +04:00
|
|
|
#if defined(COMPONENT_BUILD) && !defined(ANGLE_TRANSLATOR_STATIC)
|
2011-10-25 16:58:43 +04:00
|
|
|
#if defined(_WIN32) || defined(_WIN64)
|
|
|
|
|
2014-07-04 19:49:25 +04:00
|
|
|
#if defined(ANGLE_TRANSLATOR_IMPLEMENTATION)
|
2011-10-25 16:58:43 +04:00
|
|
|
#define COMPILER_EXPORT __declspec(dllexport)
|
|
|
|
#else
|
|
|
|
#define COMPILER_EXPORT __declspec(dllimport)
|
2014-07-04 19:49:25 +04:00
|
|
|
#endif // defined(ANGLE_TRANSLATOR_IMPLEMENTATION)
|
2011-10-25 16:58:43 +04:00
|
|
|
|
2014-07-04 19:49:25 +04:00
|
|
|
#else // defined(_WIN32) || defined(_WIN64)
|
2011-10-25 16:58:43 +04:00
|
|
|
#define COMPILER_EXPORT __attribute__((visibility("default")))
|
|
|
|
#endif
|
|
|
|
|
2014-07-04 19:49:25 +04:00
|
|
|
#else // defined(COMPONENT_BUILD) && !defined(ANGLE_TRANSLATOR_STATIC)
|
2011-10-25 16:58:43 +04:00
|
|
|
#define COMPILER_EXPORT
|
|
|
|
#endif
|
|
|
|
|
2013-05-13 16:12:37 +04:00
|
|
|
#include <stddef.h>
|
2013-01-24 18:21:01 +04:00
|
|
|
|
2014-09-20 03:35:54 +04:00
|
|
|
#include "KHR/khrplatform.h"
|
|
|
|
|
2015-02-05 22:39:18 +03:00
|
|
|
#include <map>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
2010-07-15 07:52:32 +04:00
|
|
|
//
|
|
|
|
// This is the platform independent interface between an OGL driver
|
2010-07-31 02:22:11 +04:00
|
|
|
// and the shading language compiler.
|
2010-07-15 07:52:32 +04:00
|
|
|
//
|
|
|
|
|
2014-09-20 03:35:54 +04:00
|
|
|
namespace sh
|
|
|
|
{
|
|
|
|
// GLenum alias
|
|
|
|
typedef unsigned int GLenum;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Must be included after GLenum proxy typedef
|
|
|
|
// Note: make sure to increment ANGLE_SH_VERSION when changing ShaderVars.h
|
|
|
|
#include "ShaderVars.h"
|
|
|
|
|
2010-10-09 23:44:25 +04:00
|
|
|
// Version number for shader translation API.
|
2014-07-04 19:49:25 +04:00
|
|
|
// It is incremented every time the API changes.
|
2015-02-05 22:39:18 +03:00
|
|
|
#define ANGLE_SH_VERSION 132
|
2010-10-09 23:44:25 +04:00
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
SH_GLES2_SPEC = 0x8B40,
|
2012-07-25 20:13:45 +04:00
|
|
|
SH_WEBGL_SPEC = 0x8B41,
|
|
|
|
|
2015-02-05 22:39:18 +03:00
|
|
|
SH_GLES3_SPEC = 0x8B86,
|
|
|
|
SH_WEBGL2_SPEC = 0x8B87,
|
|
|
|
|
2012-07-25 20:13:45 +04:00
|
|
|
// The CSS Shaders spec is a subset of the WebGL spec.
|
|
|
|
//
|
|
|
|
// In both CSS vertex and fragment shaders, ANGLE:
|
|
|
|
// (1) Reserves the "css_" prefix.
|
|
|
|
// (2) Renames the main function to css_main.
|
|
|
|
// (3) Disables the gl_MaxDrawBuffers built-in.
|
|
|
|
//
|
|
|
|
// In CSS fragment shaders, ANGLE:
|
|
|
|
// (1) Disables the gl_FragColor built-in.
|
|
|
|
// (2) Disables the gl_FragData built-in.
|
|
|
|
// (3) Enables the css_MixColor built-in.
|
|
|
|
// (4) Enables the css_ColorMatrix built-in.
|
|
|
|
//
|
|
|
|
// After passing a CSS shader through ANGLE, the browser is expected to append
|
|
|
|
// a new main function to it.
|
|
|
|
// This new main function will call the css_main function.
|
|
|
|
// It may also perform additional operations like varying assignment, texture
|
|
|
|
// access, and gl_FragColor assignment in order to implement the CSS Shaders
|
|
|
|
// blend modes.
|
|
|
|
//
|
|
|
|
SH_CSS_SHADERS_SPEC = 0x8B42
|
2010-10-09 23:44:25 +04:00
|
|
|
} ShShaderSpec;
|
|
|
|
|
2011-08-31 02:50:05 +04:00
|
|
|
typedef enum {
|
2013-09-07 04:24:36 +04:00
|
|
|
SH_ESSL_OUTPUT = 0x8B45,
|
|
|
|
SH_GLSL_OUTPUT = 0x8B46,
|
|
|
|
SH_HLSL_OUTPUT = 0x8B47,
|
|
|
|
SH_HLSL9_OUTPUT = 0x8B47,
|
|
|
|
SH_HLSL11_OUTPUT = 0x8B48
|
2011-08-31 02:50:05 +04:00
|
|
|
} ShShaderOutput;
|
|
|
|
|
2010-10-09 23:44:25 +04:00
|
|
|
// Compile options.
|
|
|
|
typedef enum {
|
2011-05-24 19:05:56 +04:00
|
|
|
SH_VALIDATE = 0,
|
|
|
|
SH_VALIDATE_LOOP_INDEXING = 0x0001,
|
|
|
|
SH_INTERMEDIATE_TREE = 0x0002,
|
|
|
|
SH_OBJECT_CODE = 0x0004,
|
2014-07-04 19:49:25 +04:00
|
|
|
SH_VARIABLES = 0x0008,
|
2011-05-24 19:05:56 +04:00
|
|
|
SH_LINE_DIRECTIVES = 0x0010,
|
|
|
|
SH_SOURCE_PATH = 0x0020,
|
2014-07-04 19:49:25 +04:00
|
|
|
SH_UNROLL_FOR_LOOP_WITH_INTEGER_INDEX = 0x0040,
|
|
|
|
// If a sampler array index happens to be a loop index,
|
|
|
|
// 1) if its type is integer, unroll the loop.
|
|
|
|
// 2) if its type is float, fail the shader compile.
|
|
|
|
// This is to work around a mac driver bug.
|
|
|
|
SH_UNROLL_FOR_LOOP_WITH_SAMPLER_ARRAY_INDEX = 0x0080,
|
2011-08-31 02:50:05 +04:00
|
|
|
|
|
|
|
// This is needed only as a workaround for certain OpenGL driver bugs.
|
2012-07-25 20:13:45 +04:00
|
|
|
SH_EMULATE_BUILT_IN_FUNCTIONS = 0x0100,
|
|
|
|
|
|
|
|
// This is an experimental flag to enforce restrictions that aim to prevent
|
|
|
|
// timing attacks.
|
|
|
|
// It generates compilation errors for shaders that could expose sensitive
|
|
|
|
// texture information via the timing channel.
|
|
|
|
// To use this flag, you must compile the shader under the WebGL spec
|
|
|
|
// (using the SH_WEBGL_SPEC flag).
|
|
|
|
SH_TIMING_RESTRICTIONS = 0x0200,
|
2014-07-04 19:49:25 +04:00
|
|
|
|
2012-07-25 20:13:45 +04:00
|
|
|
// This flag prints the dependency graph that is used to enforce timing
|
|
|
|
// restrictions on fragment shaders.
|
|
|
|
// This flag only has an effect if all of the following are true:
|
|
|
|
// - The shader spec is SH_WEBGL_SPEC.
|
|
|
|
// - The compile options contain the SH_TIMING_RESTRICTIONS flag.
|
2014-09-20 03:35:54 +04:00
|
|
|
// - The shader type is GL_FRAGMENT_SHADER.
|
2012-12-12 01:57:30 +04:00
|
|
|
SH_DEPENDENCY_GRAPH = 0x0400,
|
|
|
|
|
|
|
|
// Enforce the GLSL 1.017 Appendix A section 7 packing restrictions.
|
2014-07-04 19:49:25 +04:00
|
|
|
// This flag only enforces (and can only enforce) the packing
|
|
|
|
// restrictions for uniform variables in both vertex and fragment
|
|
|
|
// shaders. ShCheckVariablesWithinPackingLimits() lets embedders
|
|
|
|
// enforce the packing restrictions for varying variables during
|
|
|
|
// program link time.
|
2013-02-06 05:53:38 +04:00
|
|
|
SH_ENFORCE_PACKING_RESTRICTIONS = 0x0800,
|
|
|
|
|
|
|
|
// This flag ensures all indirect (expression-based) array indexing
|
|
|
|
// is clamped to the bounds of the array. This ensures, for example,
|
|
|
|
// that you cannot read off the end of a uniform, whether an array
|
2013-05-13 16:12:37 +04:00
|
|
|
// vec234, or mat234 type. The ShArrayIndexClampingStrategy enum,
|
|
|
|
// specified in the ShBuiltInResources when constructing the
|
|
|
|
// compiler, selects the strategy for the clamping implementation.
|
2013-09-07 04:24:36 +04:00
|
|
|
SH_CLAMP_INDIRECT_ARRAY_BOUNDS = 0x1000,
|
|
|
|
|
|
|
|
// This flag limits the complexity of an expression.
|
|
|
|
SH_LIMIT_EXPRESSION_COMPLEXITY = 0x2000,
|
|
|
|
|
|
|
|
// This flag limits the depth of the call stack.
|
|
|
|
SH_LIMIT_CALL_STACK_DEPTH = 0x4000,
|
2014-07-04 19:49:25 +04:00
|
|
|
|
|
|
|
// This flag initializes gl_Position to vec4(0,0,0,0) at the
|
|
|
|
// beginning of the vertex shader's main(), and has no effect in the
|
|
|
|
// fragment shader. It is intended as a workaround for drivers which
|
|
|
|
// incorrectly fail to link programs if gl_Position is not written.
|
|
|
|
SH_INIT_GL_POSITION = 0x8000,
|
|
|
|
|
|
|
|
// This flag replaces
|
|
|
|
// "a && b" with "a ? b : false",
|
|
|
|
// "a || b" with "a ? true : b".
|
|
|
|
// This is to work around a MacOSX driver bug that |b| is executed
|
|
|
|
// independent of |a|'s value.
|
|
|
|
SH_UNFOLD_SHORT_CIRCUIT = 0x10000,
|
|
|
|
|
|
|
|
// This flag initializes varyings without static use in vertex shader
|
|
|
|
// at the beginning of main(), and has no effects in the fragment shader.
|
|
|
|
// It is intended as a workaround for drivers which incorrectly optimize
|
|
|
|
// out such varyings and cause a link failure.
|
|
|
|
SH_INIT_VARYINGS_WITHOUT_STATIC_USE = 0x20000,
|
2014-09-20 03:35:54 +04:00
|
|
|
|
|
|
|
// This flag scalarizes vec/ivec/bvec/mat constructor args.
|
|
|
|
// It is intended as a workaround for Linux/Mac driver bugs.
|
|
|
|
SH_SCALARIZE_VEC_AND_MAT_CONSTRUCTOR_ARGS = 0x40000,
|
|
|
|
|
|
|
|
// This flag overwrites a struct name with a unique prefix.
|
|
|
|
// It is intended as a workaround for drivers that do not handle
|
|
|
|
// struct scopes correctly, including all Mac drivers and Linux AMD.
|
|
|
|
SH_REGENERATE_STRUCT_NAMES = 0x80000,
|
2010-10-09 23:44:25 +04:00
|
|
|
} ShCompileOptions;
|
|
|
|
|
2013-05-13 16:12:37 +04:00
|
|
|
// Defines alternate strategies for implementing array index clamping.
|
|
|
|
typedef enum {
|
|
|
|
// Use the clamp intrinsic for array index clamping.
|
|
|
|
SH_CLAMP_WITH_CLAMP_INTRINSIC = 1,
|
|
|
|
|
|
|
|
// Use a user-defined function for array index clamping.
|
|
|
|
SH_CLAMP_WITH_USER_DEFINED_INT_CLAMP_FUNCTION
|
|
|
|
} ShArrayIndexClampingStrategy;
|
|
|
|
|
2010-07-15 07:52:32 +04:00
|
|
|
//
|
|
|
|
// Driver must call this first, once, before doing any other
|
2010-07-31 02:22:11 +04:00
|
|
|
// compiler operations.
|
2015-02-05 22:39:18 +03:00
|
|
|
// If the function succeeds, the return value is true, else false.
|
2010-07-15 07:52:32 +04:00
|
|
|
//
|
2015-02-05 22:39:18 +03:00
|
|
|
COMPILER_EXPORT bool ShInitialize();
|
2010-07-15 07:52:32 +04:00
|
|
|
//
|
|
|
|
// Driver should call this at shutdown.
|
2015-02-05 22:39:18 +03:00
|
|
|
// If the function succeeds, the return value is true, else false.
|
2010-07-15 07:52:32 +04:00
|
|
|
//
|
2015-02-05 22:39:18 +03:00
|
|
|
COMPILER_EXPORT bool ShFinalize();
|
2010-07-15 07:52:32 +04:00
|
|
|
|
2013-01-24 18:21:01 +04:00
|
|
|
// The 64 bits hash function. The first parameter is the input string; the
|
|
|
|
// second parameter is the string length.
|
2013-05-13 16:12:37 +04:00
|
|
|
typedef khronos_uint64_t (*ShHashFunction64)(const char*, size_t);
|
2013-01-24 18:21:01 +04:00
|
|
|
|
2010-07-15 07:52:32 +04:00
|
|
|
//
|
2010-10-09 23:44:25 +04:00
|
|
|
// Implementation dependent built-in resources (constants and extensions).
|
|
|
|
// The names for these resources has been obtained by stripping gl_/GL_.
|
|
|
|
//
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
// Constants.
|
|
|
|
int MaxVertexAttribs;
|
|
|
|
int MaxVertexUniformVectors;
|
|
|
|
int MaxVaryingVectors;
|
|
|
|
int MaxVertexTextureImageUnits;
|
|
|
|
int MaxCombinedTextureImageUnits;
|
|
|
|
int MaxTextureImageUnits;
|
|
|
|
int MaxFragmentUniformVectors;
|
|
|
|
int MaxDrawBuffers;
|
|
|
|
|
|
|
|
// Extensions.
|
|
|
|
// Set to 1 to enable the extension, else 0.
|
|
|
|
int OES_standard_derivatives;
|
2011-08-31 02:50:05 +04:00
|
|
|
int OES_EGL_image_external;
|
2011-12-05 02:24:41 +04:00
|
|
|
int ARB_texture_rectangle;
|
2013-05-13 16:12:37 +04:00
|
|
|
int EXT_draw_buffers;
|
2013-09-07 04:24:36 +04:00
|
|
|
int EXT_frag_depth;
|
2014-07-04 19:49:25 +04:00
|
|
|
int EXT_shader_texture_lod;
|
2013-05-13 16:12:37 +04:00
|
|
|
|
2014-10-29 06:04:32 +03:00
|
|
|
// Set to 1 to enable replacing GL_EXT_draw_buffers #extension directives
|
|
|
|
// with GL_NV_draw_buffers in ESSL output. This flag can be used to emulate
|
|
|
|
// EXT_draw_buffers by using it in combination with GLES3.0 glDrawBuffers
|
|
|
|
// function. This applies to Tegra K1 devices.
|
|
|
|
int NV_draw_buffers;
|
|
|
|
|
2013-05-13 16:12:37 +04:00
|
|
|
// Set to 1 if highp precision is supported in the fragment language.
|
|
|
|
// Default is 0.
|
|
|
|
int FragmentPrecisionHigh;
|
2013-01-24 18:21:01 +04:00
|
|
|
|
2014-07-04 19:49:25 +04:00
|
|
|
// GLSL ES 3.0 constants.
|
|
|
|
int MaxVertexOutputVectors;
|
|
|
|
int MaxFragmentInputVectors;
|
|
|
|
int MinProgramTexelOffset;
|
|
|
|
int MaxProgramTexelOffset;
|
|
|
|
|
2013-01-24 18:21:01 +04:00
|
|
|
// Name Hashing.
|
|
|
|
// Set a 64 bit hash function to enable user-defined name hashing.
|
|
|
|
// Default is NULL.
|
|
|
|
ShHashFunction64 HashFunction;
|
2013-05-13 16:12:37 +04:00
|
|
|
|
|
|
|
// Selects a strategy to use when implementing array index clamping.
|
|
|
|
// Default is SH_CLAMP_WITH_CLAMP_INTRINSIC.
|
|
|
|
ShArrayIndexClampingStrategy ArrayIndexClampingStrategy;
|
2013-09-07 04:24:36 +04:00
|
|
|
|
|
|
|
// The maximum complexity an expression can be.
|
|
|
|
int MaxExpressionComplexity;
|
|
|
|
|
|
|
|
// The maximum depth a call stack can be.
|
|
|
|
int MaxCallStackDepth;
|
2010-10-09 23:44:25 +04:00
|
|
|
} ShBuiltInResources;
|
2010-07-15 07:52:32 +04:00
|
|
|
|
|
|
|
//
|
2010-10-09 23:44:25 +04:00
|
|
|
// Initialize built-in resources with minimum expected values.
|
2015-02-05 22:39:18 +03:00
|
|
|
// Parameters:
|
|
|
|
// resources: The object to initialize. Will be comparable with memcmp.
|
2010-07-15 07:52:32 +04:00
|
|
|
//
|
2015-02-05 22:39:18 +03:00
|
|
|
COMPILER_EXPORT void ShInitBuiltInResources(ShBuiltInResources *resources);
|
2010-07-15 07:52:32 +04:00
|
|
|
|
|
|
|
//
|
|
|
|
// ShHandle held by but opaque to the driver. It is allocated,
|
2014-07-04 19:49:25 +04:00
|
|
|
// managed, and de-allocated by the compiler. Its contents
|
2010-07-31 02:22:11 +04:00
|
|
|
// are defined by and used by the compiler.
|
2010-07-15 07:52:32 +04:00
|
|
|
//
|
|
|
|
// If handle creation fails, 0 will be returned.
|
|
|
|
//
|
2015-02-05 22:39:18 +03:00
|
|
|
typedef void *ShHandle;
|
2010-07-15 07:52:32 +04:00
|
|
|
|
2014-07-04 19:49:25 +04:00
|
|
|
//
|
2015-02-05 22:39:18 +03:00
|
|
|
// Returns the a concatenated list of the items in ShBuiltInResources as a
|
|
|
|
// null-terminated string.
|
2014-07-04 19:49:25 +04:00
|
|
|
// This function must be updated whenever ShBuiltInResources is changed.
|
|
|
|
// Parameters:
|
|
|
|
// handle: Specifies the handle of the compiler to be used.
|
2015-02-05 22:39:18 +03:00
|
|
|
COMPILER_EXPORT const std::string &ShGetBuiltInResourcesString(const ShHandle handle);
|
2014-07-04 19:49:25 +04:00
|
|
|
|
2010-07-15 07:52:32 +04:00
|
|
|
//
|
2010-07-31 02:22:11 +04:00
|
|
|
// Driver calls these to create and destroy compiler objects.
|
2010-07-15 07:52:32 +04:00
|
|
|
//
|
2011-08-31 02:50:05 +04:00
|
|
|
// Returns the handle of constructed compiler, null if the requested compiler is
|
|
|
|
// not supported.
|
2010-10-09 23:44:25 +04:00
|
|
|
// Parameters:
|
2014-09-20 03:35:54 +04:00
|
|
|
// type: Specifies the type of shader - GL_FRAGMENT_SHADER or GL_VERTEX_SHADER.
|
2010-10-09 23:44:25 +04:00
|
|
|
// spec: Specifies the language spec the compiler must conform to -
|
|
|
|
// SH_GLES2_SPEC or SH_WEBGL_SPEC.
|
2011-08-31 02:50:05 +04:00
|
|
|
// output: Specifies the output code type - SH_ESSL_OUTPUT, SH_GLSL_OUTPUT,
|
2013-09-07 04:24:36 +04:00
|
|
|
// SH_HLSL9_OUTPUT or SH_HLSL11_OUTPUT.
|
2010-10-09 23:44:25 +04:00
|
|
|
// resources: Specifies the built-in resources.
|
2011-10-25 16:58:43 +04:00
|
|
|
COMPILER_EXPORT ShHandle ShConstructCompiler(
|
2014-09-20 03:35:54 +04:00
|
|
|
sh::GLenum type,
|
2011-10-25 16:58:43 +04:00
|
|
|
ShShaderSpec spec,
|
|
|
|
ShShaderOutput output,
|
2015-02-05 22:39:18 +03:00
|
|
|
const ShBuiltInResources *resources);
|
2011-10-25 16:58:43 +04:00
|
|
|
COMPILER_EXPORT void ShDestruct(ShHandle handle);
|
2010-07-15 07:52:32 +04:00
|
|
|
|
|
|
|
//
|
2010-10-09 23:44:25 +04:00
|
|
|
// Compiles the given shader source.
|
2015-02-05 22:39:18 +03:00
|
|
|
// If the function succeeds, the return value is true, else false.
|
2010-10-09 23:44:25 +04:00
|
|
|
// Parameters:
|
|
|
|
// handle: Specifies the handle of compiler to be used.
|
|
|
|
// shaderStrings: Specifies an array of pointers to null-terminated strings
|
|
|
|
// containing the shader source code.
|
|
|
|
// numStrings: Specifies the number of elements in shaderStrings array.
|
|
|
|
// compileOptions: A mask containing the following parameters:
|
2010-12-04 01:44:01 +03:00
|
|
|
// SH_VALIDATE: Validates shader to ensure that it conforms to the spec
|
|
|
|
// specified during compiler construction.
|
|
|
|
// SH_VALIDATE_LOOP_INDEXING: Validates loop and indexing in the shader to
|
|
|
|
// ensure that they do not exceed the minimum
|
|
|
|
// functionality mandated in GLSL 1.0 spec,
|
|
|
|
// Appendix A, Section 4 and 5.
|
|
|
|
// There is no need to specify this parameter when
|
|
|
|
// compiling for WebGL - it is implied.
|
2010-10-09 23:44:25 +04:00
|
|
|
// SH_INTERMEDIATE_TREE: Writes intermediate tree to info log.
|
|
|
|
// Can be queried by calling ShGetInfoLog().
|
|
|
|
// SH_OBJECT_CODE: Translates intermediate tree to glsl or hlsl shader.
|
|
|
|
// Can be queried by calling ShGetObjectCode().
|
2014-07-04 19:49:25 +04:00
|
|
|
// SH_VARIABLES: Extracts attributes, uniforms, and varyings.
|
|
|
|
// Can be queried by calling ShGetVariableInfo().
|
2010-10-09 23:44:25 +04:00
|
|
|
//
|
2015-02-05 22:39:18 +03:00
|
|
|
COMPILER_EXPORT bool ShCompile(
|
2010-10-09 23:44:25 +04:00
|
|
|
const ShHandle handle,
|
2015-02-05 22:39:18 +03:00
|
|
|
const char * const shaderStrings[],
|
2013-05-13 16:12:37 +04:00
|
|
|
size_t numStrings,
|
2015-02-05 22:39:18 +03:00
|
|
|
int compileOptions);
|
2010-07-15 07:52:32 +04:00
|
|
|
|
2015-02-05 22:39:18 +03:00
|
|
|
// Return the version of the shader language.
|
|
|
|
COMPILER_EXPORT int ShGetShaderVersion(const ShHandle handle);
|
|
|
|
|
|
|
|
// Return the currently set language output type.
|
|
|
|
COMPILER_EXPORT ShShaderOutput ShGetShaderOutputType(
|
|
|
|
const ShHandle handle);
|
2010-10-09 23:44:25 +04:00
|
|
|
|
2015-02-05 22:39:18 +03:00
|
|
|
// Returns null-terminated information log for a compiled shader.
|
2010-10-09 23:44:25 +04:00
|
|
|
// Parameters:
|
|
|
|
// handle: Specifies the compiler
|
2015-02-05 22:39:18 +03:00
|
|
|
COMPILER_EXPORT const std::string &ShGetInfoLog(const ShHandle handle);
|
2010-10-09 23:44:25 +04:00
|
|
|
|
|
|
|
// Returns null-terminated object code for a compiled shader.
|
|
|
|
// Parameters:
|
|
|
|
// handle: Specifies the compiler
|
2015-02-05 22:39:18 +03:00
|
|
|
COMPILER_EXPORT const std::string &ShGetObjectCode(const ShHandle handle);
|
|
|
|
|
|
|
|
// Returns a (original_name, hash) map containing all the user defined
|
|
|
|
// names in the shader, including variable names, function names, struct
|
|
|
|
// names, and struct field names.
|
2013-01-24 18:21:01 +04:00
|
|
|
// Parameters:
|
|
|
|
// handle: Specifies the compiler
|
2015-02-05 22:39:18 +03:00
|
|
|
COMPILER_EXPORT const std::map<std::string, std::string> *ShGetNameHashingMap(
|
|
|
|
const ShHandle handle);
|
2013-01-24 18:21:01 +04:00
|
|
|
|
2014-09-20 03:35:54 +04:00
|
|
|
// Shader variable inspection.
|
|
|
|
// Returns a pointer to a list of variables of the designated type.
|
|
|
|
// (See ShaderVars.h for type definitions, included above)
|
|
|
|
// Returns NULL on failure.
|
2013-09-07 04:24:36 +04:00
|
|
|
// Parameters:
|
|
|
|
// handle: Specifies the compiler
|
2014-09-20 03:35:54 +04:00
|
|
|
COMPILER_EXPORT const std::vector<sh::Uniform> *ShGetUniforms(const ShHandle handle);
|
|
|
|
COMPILER_EXPORT const std::vector<sh::Varying> *ShGetVaryings(const ShHandle handle);
|
|
|
|
COMPILER_EXPORT const std::vector<sh::Attribute> *ShGetAttributes(const ShHandle handle);
|
|
|
|
COMPILER_EXPORT const std::vector<sh::Attribute> *ShGetOutputVariables(const ShHandle handle);
|
|
|
|
COMPILER_EXPORT const std::vector<sh::InterfaceBlock> *ShGetInterfaceBlocks(const ShHandle handle);
|
2013-09-07 04:24:36 +04:00
|
|
|
|
2014-07-04 19:49:25 +04:00
|
|
|
typedef struct
|
|
|
|
{
|
2014-09-20 03:35:54 +04:00
|
|
|
sh::GLenum type;
|
2014-07-04 19:49:25 +04:00
|
|
|
int size;
|
|
|
|
} ShVariableInfo;
|
|
|
|
|
2015-02-05 22:39:18 +03:00
|
|
|
// Returns true if the passed in variables pack in maxVectors following
|
2014-07-04 19:49:25 +04:00
|
|
|
// the packing rules from the GLSL 1.017 spec, Appendix A, section 7.
|
2015-02-05 22:39:18 +03:00
|
|
|
// Returns false otherwise. Also look at the SH_ENFORCE_PACKING_RESTRICTIONS
|
2014-07-04 19:49:25 +04:00
|
|
|
// flag above.
|
|
|
|
// Parameters:
|
|
|
|
// maxVectors: the available rows of registers.
|
|
|
|
// varInfoArray: an array of variable info (types and sizes).
|
|
|
|
// varInfoArraySize: the size of the variable array.
|
2015-02-05 22:39:18 +03:00
|
|
|
COMPILER_EXPORT bool ShCheckVariablesWithinPackingLimits(
|
2014-07-04 19:49:25 +04:00
|
|
|
int maxVectors,
|
2015-02-05 22:39:18 +03:00
|
|
|
ShVariableInfo *varInfoArray,
|
2014-07-04 19:49:25 +04:00
|
|
|
size_t varInfoArraySize);
|
|
|
|
|
2014-09-20 03:35:54 +04:00
|
|
|
// Gives the compiler-assigned register for an interface block.
|
|
|
|
// The method writes the value to the output variable "indexOut".
|
|
|
|
// Returns true if it found a valid interface block, false otherwise.
|
|
|
|
// Parameters:
|
|
|
|
// handle: Specifies the compiler
|
|
|
|
// interfaceBlockName: Specifies the interface block
|
|
|
|
// indexOut: output variable that stores the assigned register
|
|
|
|
COMPILER_EXPORT bool ShGetInterfaceBlockRegister(const ShHandle handle,
|
2015-02-05 22:39:18 +03:00
|
|
|
const std::string &interfaceBlockName,
|
2014-09-20 03:35:54 +04:00
|
|
|
unsigned int *indexOut);
|
|
|
|
|
|
|
|
// Gives the compiler-assigned register for uniforms in the default
|
|
|
|
// interface block.
|
|
|
|
// The method writes the value to the output variable "indexOut".
|
|
|
|
// Returns true if it found a valid default uniform, false otherwise.
|
|
|
|
// Parameters:
|
|
|
|
// handle: Specifies the compiler
|
|
|
|
// interfaceBlockName: Specifies the uniform
|
|
|
|
// indexOut: output variable that stores the assigned register
|
|
|
|
COMPILER_EXPORT bool ShGetUniformRegister(const ShHandle handle,
|
2015-02-05 22:39:18 +03:00
|
|
|
const std::string &uniformName,
|
2014-09-20 03:35:54 +04:00
|
|
|
unsigned int *indexOut);
|
|
|
|
|
2010-07-15 07:52:32 +04:00
|
|
|
#endif // _COMPILER_INTERFACE_INCLUDED_
|