Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/KhronosGroup/SPIRV-Cross.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'reference/shaders-no-opt/asm/frag/reserved-function-identifier.asm.frag')
-rw-r--r--reference/shaders-no-opt/asm/frag/reserved-function-identifier.asm.frag21
1 files changed, 21 insertions, 0 deletions
diff --git a/reference/shaders-no-opt/asm/frag/reserved-function-identifier.asm.frag b/reference/shaders-no-opt/asm/frag/reserved-function-identifier.asm.frag
new file mode 100644
index 00000000..52f0c616
--- /dev/null
+++ b/reference/shaders-no-opt/asm/frag/reserved-function-identifier.asm.frag
@@ -0,0 +1,21 @@
+#version 450
+
+layout(location = 0) out float FragColor;
+
+float _mat3(float a)
+{
+ return a + 1.0;
+}
+
+float _RESERVED_IDENTIFIER_FIXUP_gl_Foo(int a)
+{
+ return float(a) + 1.0;
+}
+
+void main()
+{
+ float param = 2.0;
+ int param_1 = 4;
+ FragColor = _mat3(param) + _RESERVED_IDENTIFIER_FIXUP_gl_Foo(param_1);
+}
+