summaryrefslogtreecommitdiffstats
path: root/Shaders/STT_generated_template.cginc
diff options
context:
space:
mode:
authoryum <yum.food.vr@gmail.com>2025-07-23 22:53:08 -0700
committeryum <yum.food.vr@gmail.com>2025-07-23 22:53:08 -0700
commit4539f87e36cb3ca554e1e174c19206b552107c57 (patch)
tree6f9aca818989773cc10f3c465224a07f847eb279 /Shaders/STT_generated_template.cginc
parentf6b93a20d754579008076e85f5c0a97e1bcbc258 (diff)
Delete unused filesv1.0.0-beta00
Diffstat (limited to 'Shaders/STT_generated_template.cginc')
-rw-r--r--Shaders/STT_generated_template.cginc19
1 files changed, 0 insertions, 19 deletions
diff --git a/Shaders/STT_generated_template.cginc b/Shaders/STT_generated_template.cginc
deleted file mode 100644
index 9091e8e..0000000
--- a/Shaders/STT_generated_template.cginc
+++ /dev/null
@@ -1,19 +0,0 @@
-#ifndef __STT_GENERATED_INC__
-#define __STT_GENERATED_INC__
-
-// %TEMPLATE__CG_ROW_COL_CONSTANTS%
-
-// %TEMPLATE__CG_ROW_COL_PARAMS%
-
-// Get the value of the parameter for the cell we're in.
-uint GetLetterParameter(float2 uv)
-{
- float CHAR_COL = floor(uv.x * BOARD_NCOLS);
- float CHAR_ROW = floor(uv.y * BOARD_NROWS);
- int res = 0;
-
- // %TEMPLATE__CG_LETTER_ACCESSOR%
- return res;
-}
-
-#endif // __STT_GENERATED_INC__