diff options
author | hecks <42101236+hecktest@users.noreply.github.com> | 2021-08-07 22:50:13 +0200 |
---|---|---|
committer | hecks <42101236+hecktest@users.noreply.github.com> | 2021-08-07 22:50:13 +0200 |
commit | da22e5d7c04bccc9bbe86db0a4e7c8f9cf5f22e5 (patch) | |
tree | 304e108dac01d0786312577d9c1acb707f93b9b5 /scripts | |
parent | f83dab83cf691014f5953a8418b799cfcc0c4301 (diff) | |
download | irrlicht-da22e5d7c04bccc9bbe86db0a4e7c8f9cf5f22e5.tar.xz |
Remove redundant and troublesome constants from the GL binding
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/BindingGenerator.lua | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/scripts/BindingGenerator.lua b/scripts/BindingGenerator.lua index 624c21c..0774cdd 100755 --- a/scripts/BindingGenerator.lua +++ b/scripts/BindingGenerator.lua @@ -400,10 +400,7 @@ f:write( "\n\n" ); f:write[[ static constexpr const GLenum ZERO = 0; static constexpr const GLenum ONE = 1; - static constexpr const GLenum FALSE = 0; - static constexpr const GLenum TRUE = 1; static constexpr const GLenum NONE = 0; - static constexpr const GLenum NO_ERROR = 0; ]]; f:write( "};\n" ); f:write( "\n//Global GL procedures object.\n" ); |