Also beefed up support for running compute shaders is #version 420, but this work is only partially done.
7 lines
145 B
Text
Executable file
7 lines
145 B
Text
Executable file
#version 420
|
|
|
|
layout(local_size_x = 2) in; // ERROR, no compute
|
|
|
|
#extension GL_ARB_compute_shader : enable
|
|
|
|
layout(local_size_x = 2) in;
|