pub struct Version14 { /* private fields */ }Implementations§
Trait Implementations§
Source§impl GL_1_4 for Version14
impl GL_1_4 for Version14
fn glGetError(&self) -> GLenum
fn glBlendFuncSeparate( &self, sfactorRGB: GLenum, dfactorRGB: GLenum, sfactorAlpha: GLenum, dfactorAlpha: GLenum, ) -> Result<()>
fn glMultiDrawArrays( &self, mode: GLenum, first: *const GLint, count: *const GLsizei, drawcount: GLsizei, ) -> Result<()>
fn glMultiDrawElements( &self, mode: GLenum, count: *const GLsizei, type_: GLenum, indices: *const *const c_void, drawcount: GLsizei, ) -> Result<()>
fn glPointParameterf(&self, pname: GLenum, param: GLfloat) -> Result<()>
fn glPointParameterfv( &self, pname: GLenum, params: *const GLfloat, ) -> Result<()>
fn glPointParameteri(&self, pname: GLenum, param: GLint) -> Result<()>
fn glPointParameteriv(&self, pname: GLenum, params: *const GLint) -> Result<()>
fn glFogCoordf(&self, coord: GLfloat) -> Result<()>
fn glFogCoordfv(&self, coord: *const GLfloat) -> Result<()>
fn glFogCoordd(&self, coord: GLdouble) -> Result<()>
fn glFogCoorddv(&self, coord: *const GLdouble) -> Result<()>
fn glFogCoordPointer( &self, type_: GLenum, stride: GLsizei, pointer: *const c_void, ) -> Result<()>
fn glSecondaryColor3b( &self, red: GLbyte, green: GLbyte, blue: GLbyte, ) -> Result<()>
fn glSecondaryColor3bv(&self, v: *const GLbyte) -> Result<()>
fn glSecondaryColor3d( &self, red: GLdouble, green: GLdouble, blue: GLdouble, ) -> Result<()>
fn glSecondaryColor3dv(&self, v: *const GLdouble) -> Result<()>
fn glSecondaryColor3f( &self, red: GLfloat, green: GLfloat, blue: GLfloat, ) -> Result<()>
fn glSecondaryColor3fv(&self, v: *const GLfloat) -> Result<()>
fn glSecondaryColor3i( &self, red: GLint, green: GLint, blue: GLint, ) -> Result<()>
fn glSecondaryColor3iv(&self, v: *const GLint) -> Result<()>
fn glSecondaryColor3s( &self, red: GLshort, green: GLshort, blue: GLshort, ) -> Result<()>
fn glSecondaryColor3sv(&self, v: *const GLshort) -> Result<()>
fn glSecondaryColor3ub( &self, red: GLubyte, green: GLubyte, blue: GLubyte, ) -> Result<()>
fn glSecondaryColor3ubv(&self, v: *const GLubyte) -> Result<()>
fn glSecondaryColor3ui( &self, red: GLuint, green: GLuint, blue: GLuint, ) -> Result<()>
fn glSecondaryColor3uiv(&self, v: *const GLuint) -> Result<()>
fn glSecondaryColor3us( &self, red: GLushort, green: GLushort, blue: GLushort, ) -> Result<()>
fn glSecondaryColor3usv(&self, v: *const GLushort) -> Result<()>
fn glSecondaryColorPointer( &self, size: GLint, type_: GLenum, stride: GLsizei, pointer: *const c_void, ) -> Result<()>
fn glWindowPos2d(&self, x: GLdouble, y: GLdouble) -> Result<()>
fn glWindowPos2dv(&self, v: *const GLdouble) -> Result<()>
fn glWindowPos2f(&self, x: GLfloat, y: GLfloat) -> Result<()>
fn glWindowPos2fv(&self, v: *const GLfloat) -> Result<()>
fn glWindowPos2i(&self, x: GLint, y: GLint) -> Result<()>
fn glWindowPos2iv(&self, v: *const GLint) -> Result<()>
fn glWindowPos2s(&self, x: GLshort, y: GLshort) -> Result<()>
fn glWindowPos2sv(&self, v: *const GLshort) -> Result<()>
fn glWindowPos3d(&self, x: GLdouble, y: GLdouble, z: GLdouble) -> Result<()>
fn glWindowPos3dv(&self, v: *const GLdouble) -> Result<()>
fn glWindowPos3f(&self, x: GLfloat, y: GLfloat, z: GLfloat) -> Result<()>
fn glWindowPos3fv(&self, v: *const GLfloat) -> Result<()>
fn glWindowPos3i(&self, x: GLint, y: GLint, z: GLint) -> Result<()>
fn glWindowPos3iv(&self, v: *const GLint) -> Result<()>
fn glWindowPos3s(&self, x: GLshort, y: GLshort, z: GLshort) -> Result<()>
fn glWindowPos3sv(&self, v: *const GLshort) -> Result<()>
fn glBlendColor( &self, red: GLfloat, green: GLfloat, blue: GLfloat, alpha: GLfloat, ) -> Result<()>
fn glBlendEquation(&self, mode: GLenum) -> Result<()>
impl Copy for Version14
impl Eq for Version14
impl StructuralPartialEq for Version14
Auto Trait Implementations§
impl Freeze for Version14
impl RefUnwindSafe for Version14
impl Send for Version14
impl Sync for Version14
impl Unpin for Version14
impl UnwindSafe for Version14
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more