init
This commit is contained in:
commit
444f800536
122 changed files with 17137 additions and 0 deletions
12
data/shaders/Quad.frag
Normal file
12
data/shaders/Quad.frag
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
//
|
||||
|
||||
layout (location=0) in vec2 uv;
|
||||
layout (location=0) out vec4 out_FragColor;
|
||||
|
||||
layout(push_constant) uniform PerFrameData {
|
||||
uint textureId;
|
||||
};
|
||||
|
||||
void main() {
|
||||
out_FragColor = textureBindless2D(textureId, 0, uv);
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue