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 glDisableVertexAttribArray and glValidateProgram #3

Merged
merged 2 commits into from Mar 19, 2013
Merged
Changes from 1 commit
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Prev

Added missing glValidateProgram

  • Loading branch information
Jeaye
Jeaye committed Mar 17, 2013
commit 692e428ad7faeaa0421e2be79b8d7f600b9785fe
6 gl2.rs
@@ -520,6 +520,12 @@ pub fn use_program(program: GLuint) {
}
}

pub fn validate_program(program: GLuint) {
unsafe {
ll::glValidateProgram(program);
}
}

pub fn vertex_attrib_pointer_f32(index: GLuint,
size: GLint,
normalized: bool,
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.