• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#version 460
2
3// GLSL spec: Hence, the types, initializers, and any location specifiers of all statically used uniform
4// variables with the same name must match across all shaders that are linked into a single program
5uniform crossStageBlock {
6    float a;
7    float b; // not present in frag
8} blockname;
9
10void main() {}