summaryrefslogtreecommitdiffhomepage
path: root/examples/web/shaders/shaders_custom_uniform.c
diff options
context:
space:
mode:
authorRay <[email protected]>2021-03-12 18:05:09 +0100
committerRay <[email protected]>2021-03-12 18:05:09 +0100
commit421c4e4cd85310bef3a8f79f89d23e3a1eac9668 (patch)
treea49167a3f2c2ae7558c9a3a94696bc187ffbc824 /examples/web/shaders/shaders_custom_uniform.c
parentcc62fcccc630fdc4badcad8381d5bb43eb71fa1f (diff)
downloadraylib.com-421c4e4cd85310bef3a8f79f89d23e3a1eac9668.tar.gz
raylib.com-421c4e4cd85310bef3a8f79f89d23e3a1eac9668.zip
Renamed FormatText() -> TextFormat()
Diffstat (limited to 'examples/web/shaders/shaders_custom_uniform.c')
-rw-r--r--examples/web/shaders/shaders_custom_uniform.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/web/shaders/shaders_custom_uniform.c b/examples/web/shaders/shaders_custom_uniform.c
index 69ac116..2057dcc 100644
--- a/examples/web/shaders/shaders_custom_uniform.c
+++ b/examples/web/shaders/shaders_custom_uniform.c
@@ -76,7 +76,7 @@ int main(void)
// Load postprocessing shader
// NOTE: Defining 0 (NULL) for vertex shader forces usage of internal default vertex shader
- shader = LoadShader(0, FormatText("resources/shaders/glsl%i/swirl.fs", GLSL_VERSION));
+ shader = LoadShader(0, TextFormat("resources/shaders/glsl%i/swirl.fs", GLSL_VERSION));
// Get variable (uniform) location on the shader to connect with the program
// NOTE: If uniform variable could not be found in the shader, function returns -1