-
-
Notifications
You must be signed in to change notification settings - Fork 18
shader_reset
Vašek edited this page Jan 22, 2019
·
3 revisions
Reset the draw target
shader_reset()
Returns: void
When you are done drawing in the shader, use this function to reset the draw target from a shader to standard drawing.
shader_set(shader_get("Shader0"));
//Drawing
shader_reset();
This code will set drawing target to Shader0
and at the end reset the draw target back to basic draw target.
Back to shaders