summaryrefslogtreecommitdiffhomepage
path: root/examples/web/shaders/shaders_raymarching.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/web/shaders/shaders_raymarching.c')
-rw-r--r--examples/web/shaders/shaders_raymarching.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/web/shaders/shaders_raymarching.c b/examples/web/shaders/shaders_raymarching.c
index 1e35f31..3d61fd9 100644
--- a/examples/web/shaders/shaders_raymarching.c
+++ b/examples/web/shaders/shaders_raymarching.c
@@ -75,7 +75,7 @@ int main(void)
// Load raymarching shader
// NOTE: Defining 0 (NULL) for vertex shader forces usage of internal default vertex shader
- shader = LoadShader(0, FormatText("resources/shaders/glsl%i/raymarching.fs", GLSL_VERSION));
+ shader = LoadShader(0, TextFormat("resources/shaders/glsl%i/raymarching.fs", GLSL_VERSION));
// Get shader locations for required uniforms
viewEyeLoc = GetShaderLocation(shader, "viewEye");