Skip to content

Commit dd0587e

Browse files
committed
Update shaders_texture_drawing.c
1 parent 2e376c6 commit dd0587e

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

examples/shaders/shaders_texture_drawing.c

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
*
55
* Example complexity rating: [★★☆☆] 2/4
66
*
7-
* NOTE: This example illustrates how to draw into a blank texture using a shader
8-
*
97
* Example originally created with raylib 2.0, last time updated with raylib 3.7
108
*
119
* Example contributed by Michał Ciesielski (@ciessielski) and reviewed by Ramon Santamaria (@raysan5)
@@ -67,7 +65,7 @@ int main(void)
6765
ClearBackground(RAYWHITE);
6866

6967
BeginShaderMode(shader); // Enable our custom shader for next shapes/textures drawings
70-
DrawTexture(texture, 0, 0, WHITE); // Drawing BLANK texture, all magic happens on shader
68+
DrawTexture(texture, 0, 0, WHITE); // Drawing BLANK texture, all rendering magic happens on shader
7169
EndShaderMode(); // Disable our custom shader, return to default shader
7270

7371
DrawText("BACKGROUND is PAINTED and ANIMATED on SHADER!", 10, 10, 20, MAROON);

0 commit comments

Comments
 (0)