Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added GL_RED, GL_BLUE, and GL_GREEN #17

Merged
merged 1 commit into from Apr 14, 2013
Merged
Changes from all commits
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Added GL_RED, BLUE, GREEN

  • Loading branch information
Jeaye
Jeaye committed Apr 14, 2013
commit 51cc13a940251b0876d865c38a93ed01209484bd
3 gl2.rs
@@ -171,6 +171,9 @@ pub static UNPACK_ROW_LENGTH: c_uint = 0x0CF2 as c_uint;

/* PixelFormat */
pub static DEPTH_COMPONENT: c_uint = 0x1902 as c_uint;
pub static RED: c_uint = 0x1903 as c_uint;
pub static GREEN: c_uint = 0x1904 as c_uint;
pub static BLUE: c_uint = 0x1905 as c_uint;
pub static ALPHA: c_uint = 0x1906 as c_uint;
pub static RGB: c_uint = 0x1907 as c_uint;
pub static RGBA: c_uint = 0x1908 as c_uint;
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.