Proof of concept for Algorithm objects

Next up compute kernel dispatch!
This commit is contained in:
Eryn Wells 2018-11-04 13:44:47 -05:00
parent 96730ecd41
commit 55a134882d
6 changed files with 160 additions and 34 deletions

View file

@ -41,6 +41,12 @@ typedef NS_ENUM(NSInteger, TextureIndex)
TextureIndexColor = 0,
};
typedef NS_ENUM(NSInteger, GeneratorTextureIndex)
{
GeneratorTextureIndexIn = 0,
GeneratorTextureIndexOut = 1,
};
typedef struct
{
matrix_float4x4 projectionMatrix;