mirror of
https://git.sr.ht/~eliasnaur/gio
synced 2026-07-01 15:45:38 +00:00
1062d4e79d
Safari's WebGL1 implementation (rightly) complains that first-class array types are not supported as function result types. Define and use a struct type instead. While we're here, use const variables instead of functions. Signed-off-by: Elias Naur <mail@eliasnaur.com>
27 lines
620 B
GLSL
27 lines
620 B
GLSL
#version 310 es
|
|
|
|
// SPDX-License-Identifier: Unlicense OR MIT
|
|
|
|
precision highp float;
|
|
|
|
#include <common.inc>
|
|
|
|
layout(location = 0) in vec2 pos;
|
|
layout(location = 1) in vec2 uv;
|
|
|
|
layout(binding = 0) uniform Block {
|
|
vec4 uvTransform;
|
|
vec4 subUVTransform;
|
|
};
|
|
|
|
layout(location = 0) out vec2 vUV;
|
|
|
|
void main() {
|
|
vec3 p = transform3x2(fboTransform, vec3(pos, 1.0));
|
|
gl_Position = vec4(p, 1);
|
|
vec3 uv3 = transform3x2(fboTextureTransform, vec3(uv, 1.0));
|
|
vUV = uv3.xy*subUVTransform.xy + subUVTransform.zw;
|
|
vUV = transform3x2(fboTextureTransform, vec3(vUV, 1.0)).xy;
|
|
vUV = vUV*uvTransform.xy + uvTransform.zw;
|
|
}
|