diff options
author | hnOsmium0001 <[email protected]> | 2022-04-10 22:42:14 -0700 |
---|---|---|
committer | hnOsmium0001 <[email protected]> | 2022-04-10 23:00:36 -0700 |
commit | 67affc75a4824dfd8675cc5455d9ee71b1583c1c (patch) | |
tree | e6624157831039ed3c1668b6a4b21337633f41e6 /assets/Shaders/Default.json | |
parent | 906557f094e407ce21d429ef647bc75fe3179cf1 (diff) |
Add shader and corresponding editor components
Diffstat (limited to 'assets/Shaders/Default.json')
-rw-r--r-- | assets/Shaders/Default.json | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/assets/Shaders/Default.json b/assets/Shaders/Default.json new file mode 100644 index 0000000..d294372 --- /dev/null +++ b/assets/Shaders/Default.json @@ -0,0 +1,32 @@ +{ + "Inputs": [ + { + "Semantic": "Position", + "Name": "pos", + "ScalarType": "float", + "Width": 1, + "Height": 3, + "ArrayLength": 1, + "OpenGLLocation": 0 + }, + { + "Semantic": "Color1", + "Name": "color", + "ScalarType": "float", + "Width": 1, + "Height": 4, + "ArrayLength": 1, + "OpenGLLocation": 1 + } + ], + "Outputs": [ + { + "Name": "fragColor", + "ScalarType": "float", + "Width": 1, + "Height": 4, + "ArrayLength": 1, + "OpenGLLocation": 0 + } + ] +}
\ No newline at end of file |