mirror of
https://github.com/raysan5/raylib.git
synced 2026-02-03 20:59:18 -05:00
Missing closing quote in second string of LoadShader function, in last code example.
@ -103,7 +103,7 @@ User can load any custom shader using provided `Material` and `Shader`structs:
|
|||||||
```c
|
```c
|
||||||
Material material = { 0 }; // Empty material
|
Material material = { 0 }; // Empty material
|
||||||
|
|
||||||
material.shader = LoadShader("custom_shader.vs", "custom_shader.fs);
|
material.shader = LoadShader("custom_shader.vs", "custom_shader.fs");
|
||||||
|
|
||||||
// Setup location points in case names are not predefined ones or more locations are required
|
// Setup location points in case names are not predefined ones or more locations are required
|
||||||
// Use: GetShaderLocation() and SetShaderValue*() functions
|
// Use: GetShaderLocation() and SetShaderValue*() functions
|
||||||
|
|||||||
Reference in New Issue
Block a user