sapp-kms 0.1.1

Part of miniquad rendering library. Orignally this was a sokol-app C code transpiled to rust with c2rust and partially rewritten to more idiomatic rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use crate::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!();
}

pub unsafe fn sapp_is_elapsed_timer_supported() -> bool {
    return false;
}