1layout(set=0) uniform half zoom;
2
3void main() {
4    sk_Position = half4(1);
5    if (zoom == 1) return;
6    sk_Position *= zoom;
7}
8