Update glslang reference.

This commit is contained in:
Hans-Kristian Arntzen 2022-09-05 11:18:10 +02:00
parent ec7b9b0ce7
commit 6a73e68d30
4 changed files with 4 additions and 4 deletions

View File

@ -2,7 +2,7 @@
# Copyright 2016-2021 The Khronos Group Inc.
# SPDX-License-Identifier: Apache-2.0
GLSLANG_REV=69ae9e7460499b488cb2d32edae623a95264db14
GLSLANG_REV=a53aa3e94f8b4bf22a6eb6e8a207fe91ab02b989
SPIRV_TOOLS_REV=4c456f7da67c5437a6fb7d4d20d78e2a5ae2acf2
SPIRV_HEADERS_REV=87d5b782bec60822aa878941e6b13c0a9a954c9b
PROTOCOL=https

View File

@ -3,7 +3,7 @@
layout(location = 0) out vec2 value;
layout(location = 0) pervertexEXT in vec2 vUV[3];
layout(location = 1) pervertexEXT in vec2 vUV2[3];
layout(location = 3) pervertexEXT in vec2 vUV2[3];
void main()
{

View File

@ -3,7 +3,7 @@
layout(location = 0) out vec2 value;
layout(location = 0) pervertexEXT in vec2 vUV[3];
layout(location = 1) pervertexEXT in vec2 vUV2[3];
layout(location = 3) pervertexEXT in vec2 vUV2[3];
void main()
{

View File

@ -3,7 +3,7 @@
layout(location = 0) out vec2 value;
layout(location = 0) pervertexEXT in vec2 vUV[3];
layout(location = 1) pervertexEXT in vec2 vUV2[3];
layout(location = 3) pervertexEXT in vec2 vUV2[3];
void main () {
value = gl_BaryCoordEXT.x * vUV[0] + gl_BaryCoordEXT.y * vUV[1] + gl_BaryCoordEXT.z * vUV[2];