miniquad 0.4.9

Cross-platform window context and rendering library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![allow(non_snake_case, dead_code)]

use crate::native::gl::{GLenum, GLint, GLuint, GLuint64};

pub const GL_TIME_ELAPSED: u32 = 35007;

pub unsafe fn glGetQueryObjectui64v(_id: GLuint, _pname: GLenum, _params: *mut GLuint64) {
    unimplemented!();
}

pub unsafe fn glGetQueryObjectiv(_id: GLuint, _pname: GLenum, _params: *mut GLint) {
    unimplemented!();
}