0
0
Fork 0
mirror of https://github.com/ZDoom/Raze.git synced 2025-03-02 06:52:58 +00:00
raze/wadsrc/static/zscript/engine/ppshader.zs
2022-01-21 01:16:22 +01:00

8 lines
492 B
Text

struct PPShader native
{
native clearscope static void SetEnabled(string shaderName, bool enable);
native clearscope static void SetUniform1f(string shaderName, string uniformName, float value);
native clearscope static void SetUniform2f(string shaderName, string uniformName, vector2 value);
native clearscope static void SetUniform3f(string shaderName, string uniformName, vector3 value);
native clearscope static void SetUniform1i(string shaderName, string uniformName, int value);
}