John Kessenich | c10191d | 2017-05-08 00:12:28 -0600 | [diff] [blame] | 1 | #version 450 |
2 | |||||
3 | uniform textureBuffer tBuf; | ||||
4 | uniform sampler s; | ||||
5 | uniform samplerBuffer sBuf; | ||||
6 | |||||
7 | uniform utextureBuffer utBuf; | ||||
8 | uniform itextureBuffer itBuf; | ||||
9 | |||||
10 | void main() | ||||
11 | { | ||||
12 | texelFetch(samplerBuffer(tBuf, s), 13); | ||||
13 | texelFetch(sBuf, 13); | ||||
14 | texelFetch(tBuf, 13); | ||||
15 | texelFetch(utBuf, 13); | ||||
16 | texelFetch(itBuf, 13); | ||||
17 | } |