Archived
1
Fork 0
This repository has been archived on 2025-04-12. You can view files and clone it, but cannot push or open issues or pull requests.
graph/shaders/sobel.vert

13 lines
214 B
GLSL
Raw Normal View History

2018-12-25 10:57:12 -05:00
#version 450 core
layout(location = 0) in vec3 inPosition;
layout(push_constant) uniform PushConsts {
mat4 mvp;
} pushConstants;
void main() {
gl_Position = pushConstants.mvp * vec4(inPosition, 1.0);
}