Moved shaders to new directory
This commit is contained in:
parent
0b3f8340e3
commit
99b226237a
1244 changed files with 0 additions and 0 deletions
13
shaders/glsl/raytracingtextures/bufferreferences.glsl
Normal file
13
shaders/glsl/raytracingtextures/bufferreferences.glsl
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
/* Copyright (c) 2023, Sascha Willems
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
*/
|
||||
|
||||
layout(push_constant) uniform BufferReferences {
|
||||
uint64_t vertices;
|
||||
uint64_t indices;
|
||||
} bufferReferences;
|
||||
|
||||
layout(buffer_reference, scalar) buffer Vertices {vec4 v[]; };
|
||||
layout(buffer_reference, scalar) buffer Indices {uint i[]; };
|
||||
Loading…
Add table
Add a link
Reference in a new issue