-
Notifications
You must be signed in to change notification settings - Fork 151
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
decccce
commit 94971f2
Showing
40 changed files
with
4,988 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#version 460 | ||
#extension GL_EXT_buffer_reference : enable | ||
|
||
layout(buffer_reference) buffer Node { uint x; }; | ||
|
||
struct Bar { | ||
uint t; | ||
uint s; | ||
}; | ||
|
||
layout(push_constant, std430) uniform foo { | ||
uint a; | ||
uint b[4]; | ||
Bar bar; | ||
Node node; | ||
}; | ||
|
||
layout(set=0, binding=0) buffer SSBO { | ||
uint out_value; | ||
}; | ||
|
||
// Everything should be marked as UNUSED | ||
void main() {} |
Binary file not shown.
Oops, something went wrong.