summaryrefslogtreecommitdiffstats
path: root/globals.cginc
diff options
context:
space:
mode:
Diffstat (limited to 'globals.cginc')
-rw-r--r--globals.cginc14
1 files changed, 14 insertions, 0 deletions
diff --git a/globals.cginc b/globals.cginc
index fd865dc..ed76917 100644
--- a/globals.cginc
+++ b/globals.cginc
@@ -5,6 +5,8 @@
SamplerState point_repeat_s;
SamplerState linear_repeat_s;
+SamplerState aniso4_trilinear_repeat_s;
+SamplerState aniso8_trilinear_repeat_s;
SamplerState aniso16_trilinear_repeat_s;
SamplerState bilinear_repeat_s;
SamplerState linear_clamp_s;
@@ -100,4 +102,16 @@ float4 _Center_Offset_Heightmap_ST;
float _Center_Offset_Factor;
#endif // _CENTER_OFFSET
+#if defined(_LOGICAL_TIME)
+float _Logical_Time;
+#endif // _LOGICAL_TIME
+
+float getTime() {
+#if defined(_LOGICAL_TIME)
+ return _Logical_Time;
+#else
+ return _Time[0];
+#endif // _LOGICAL_TIME
+}
+
#endif // __GLOBALS_INC