Scene: Add Android/iOS shader defines

This commit is contained in:
DiThi 2025-03-18 14:23:30 +01:00 committed by Alberto Torres
parent adbebbfcd7
commit aaf89d2589

View file

@ -549,6 +549,11 @@ proc get_lighting_code_defines*(self: Scene): seq[string] =
"#define MAX_CUBE_MAPS " & $(if self.isNil: 0 else: self.max_cubemaps),
"#define MAX_SPHERICAL_HARMONICS " & $(if self.isNil: 0 else: self.max_spherical_harmonics),
"#define USE_SHADOW_SAMPLERS " & $(USE_SHADOW_SAMPLERS.int),
when defined(ios):
"#define MYOU_IOS"
elif defined(android):
"#define MYOU_ANDROID"
else: ""
]
proc get_lighting_code*(self: Scene): string =