mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
sokol: fix v -Wimpure-v examples/2048/
This commit is contained in:
12
vlib/sokol/sgl/enums.c.v
Normal file
12
vlib/sokol/sgl/enums.c.v
Normal file
@@ -0,0 +1,12 @@
|
||||
module sgl
|
||||
|
||||
// SglError is C.sgl_error_t
|
||||
pub enum SglError {
|
||||
no_error = C.SGL_NO_ERROR // 0
|
||||
vertices_full = C.SGL_ERROR_VERTICES_FULL
|
||||
uniforms_full = C.SGL_ERROR_UNIFORMS_FULL
|
||||
commands_full = C.SGL_ERROR_COMMANDS_FULL
|
||||
stack_overflow = C.SGL_ERROR_STACK_OVERFLOW
|
||||
stack_underfloat = C.SGL_ERROR_STACK_UNDERFLOW
|
||||
no_context = C.SGL_ERROR_NO_CONTEXT
|
||||
}
|
||||
Reference in New Issue
Block a user