Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
glslang
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
glslang
Commits
9466850f
Commit
9466850f
authored
Feb 12, 2019
by
Sahil Parmar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update gtest to explicitly size gl_PrimitiveIndicesNV[]
parent
ab027bef
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
spv.meshShaderRedeclBuiltins.mesh
Test/spv.meshShaderRedeclBuiltins.mesh
+3
-3
No files found.
Test/spv.meshShaderRedeclBuiltins.mesh
View file @
9466850f
...
@@ -22,16 +22,16 @@ out gl_MeshPerVertexNV {
...
@@ -22,16 +22,16 @@ out gl_MeshPerVertexNV {
float gl_PointSize;
float gl_PointSize;
float gl_ClipDistance[4];
float gl_ClipDistance[4];
float gl_CullDistance[4];
float gl_CullDistance[4];
} gl_MeshVerticesNV[MAX_VER]; // explicitly sized to MAX_VER
} gl_MeshVerticesNV[MAX_VER];
// explicitly sized to MAX_VER
perprimitiveNV out gl_MeshPerPrimitiveNV {
perprimitiveNV out gl_MeshPerPrimitiveNV {
int gl_PrimitiveID;
int gl_PrimitiveID;
int gl_Layer;
int gl_Layer;
int gl_ViewportIndex;
int gl_ViewportIndex;
int gl_ViewportMask[];
int gl_ViewportMask[];
} gl_MeshPrimitivesNV[]; // implicitly sized to MAX_PRIM
} gl_MeshPrimitivesNV[];
// implicitly sized to MAX_PRIM
out uint gl_PrimitiveIndicesNV[
];
// explicitly sized to MAX_PRIM * 3
out uint gl_PrimitiveIndicesNV[
MAX_PRIM*3];
// explicitly sized to MAX_PRIM * 3
void main()
void main()
{
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment