File: spv.xfb.vert

package info (click to toggle)
glslang 16.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 51,712 kB
  • sloc: cpp: 92,305; yacc: 4,320; sh: 603; python: 305; ansic: 94; javascript: 74; makefile: 17
file content (20 lines) | stat: -rw-r--r-- 476 bytes parent folder | download | duplicates (16)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#version 450

layout(xfb_buffer = 3) out;
layout(xfb_stride = 48) out;
layout(xfb_offset = 12, location = 0) out float out1;

layout(xfb_buffer = 2) out;
layout(location=1) out outXfb {
    layout(xfb_buffer = 2, xfb_stride = 32, xfb_offset = 8) float out2;
};

layout(xfb_buffer = 1, location=3) out outXfb2 {
    layout(xfb_stride = 64, xfb_offset = 60) float out3;
};

layout(location = 4, xfb_buffer = 0, xfb_offset = 4) out float out4;

void main()
{
}