spv.fsi_Error.frag 419 B

123456789101112131415161718192021222324
  1. #version 450
  2. #extension GL_ARB_fragment_shader_interlock : enable
  3. layout(pixel_interlock_ordered) out;
  4. layout(pixel_interlock_ordered) in;
  5. layout(pixel_interlock_unordered) in;
  6. void foo()
  7. {
  8. beginInvocationInterlockARB();
  9. endInvocationInterlockARB();
  10. }
  11. void main() {
  12. endInvocationInterlockARB();
  13. beginInvocationInterlockARB();
  14. return;
  15. endInvocationInterlockARB();
  16. }