changes based on feedback

This commit is contained in:
Sahil Parmar 2018-09-26 13:38:25 -07:00
parent 95e2d4ec02
commit 3ae0f58322
8 changed files with 453 additions and 188 deletions

View file

@ -1,4 +1,4 @@
#version 320 es
#version 450
#define MAX_VER 81
#define MAX_PRIM 32
@ -36,8 +36,8 @@ layout(location=20) out myblock2 {
void main()
{
int iid = int(gl_LocalInvocationID.x);
int gid = int(gl_WorkGroupID.x);
uint iid = gl_LocalInvocationID.x;
uint gid = gl_WorkGroupID.x;
blk[iid].f = 11.0;
blk[iid+1].fArr[gid] = blk[iid].f;