nonVulkan.frag 294 B

12345678910
  1. #version 450
  2. layout(constant_id = 17) const int arraySize = 12; // ERROR
  3. layout(input_attachment_index = 1) int foo; // ERROR
  4. layout(push_constant) uniform ubn { int a; } ubi; // ERROR
  5. #ifdef VULKAN
  6. #error VULKAN should not be defined
  7. #endif