HLSL: Fix merge conflict.
This commit is contained in:
parent
4e55988a47
commit
21e7e32126
3 changed files with 143 additions and 144 deletions
|
|
@ -1,12 +1,12 @@
|
|||
|
||||
// implicit sized array
|
||||
uniform float g_array [ ] = { 1, 2, 3, 4, 5 };
|
||||
static float g_array [ ] = { 1, 2, 3, 4, 5 };
|
||||
|
||||
// Unused implicit sized array
|
||||
uniform float g_array_unused [ ] = { 1, 2, 3, 4, 5, 6, 7 };
|
||||
static float g_array_unused [ ] = { 1, 2, 3, 4, 5, 6, 7 };
|
||||
|
||||
// Test implicit size arrayed structs
|
||||
uniform struct mystruct {
|
||||
static struct mystruct {
|
||||
int i;
|
||||
float f;
|
||||
} g_mystruct[] = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue