diff options
| author | Andrew Reidmeyer <[email protected]> | 2017-06-13 20:38:29 -0600 |
|---|---|---|
| committer | Andrew Reidmeyer <[email protected]> | 2017-06-13 20:38:29 -0600 |
| commit | 62a1427154131f2387675957c1d2027061f354f0 (patch) | |
| tree | 4efdcb7d3fe9722d46523a51bc5c90b96f25441e /include/NvFlowTypes.h | |
| parent | Initial 1.0.0 binary release (diff) | |
| download | flow-1.0.1.tar.xz flow-1.0.1.zip | |
NvFlow 1.0.1v1.0.1
Diffstat (limited to 'include/NvFlowTypes.h')
| -rw-r--r-- | include/NvFlowTypes.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/include/NvFlowTypes.h b/include/NvFlowTypes.h index 487809f..dd78a96 100644 --- a/include/NvFlowTypes.h +++ b/include/NvFlowTypes.h @@ -42,6 +42,26 @@ struct NvFlowUint4 NvFlowUint x, y, z, w; }; +struct NvFlowInt2 +{ + int x, y; +}; + +struct NvFlowInt3 +{ + int x, y, z; +}; + +struct NvFlowInt4 +{ + int x, y, z, w; +}; + +struct NvFlowFloat2 +{ + float x, y; +}; + struct NvFlowFloat3 { float x, y, z; |