diff options
author | Paul Berry <[email protected]> | 2012-08-04 10:43:53 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2012-12-06 12:13:22 -0800 |
commit | 4d6d22100abf4512865c316f3ad6a3bd25dd28c1 (patch) | |
tree | cf77791c3420c632c7e5b89bd63824b0aa113fca /src/glsl/builtins/profiles/100es.vert | |
parent | 8dec1bfedd27ae45632b0e08fb5996ff60d042b6 (diff) |
glsl: Make builtin function profiles for GLSL ES use "es" in the filename.
Reviewed-by: Ian Romanick <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Acked-by: Carl Worth <[email protected]>
Diffstat (limited to 'src/glsl/builtins/profiles/100es.vert')
-rw-r--r-- | src/glsl/builtins/profiles/100es.vert | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/glsl/builtins/profiles/100es.vert b/src/glsl/builtins/profiles/100es.vert new file mode 100644 index 00000000000..8f7ea61f7dd --- /dev/null +++ b/src/glsl/builtins/profiles/100es.vert @@ -0,0 +1,6 @@ +#version 100 +vec4 texture2DLod (sampler2D sampler, vec2 coord, float lod); +vec4 texture2DProjLod(sampler2D sampler, vec3 coord, float lod); +vec4 texture2DProjLod(sampler2D sampler, vec4 coord, float lod); + +vec4 textureCubeLod (samplerCube sampler, vec3 coord, float lod); |