mirror of
https://github.com/vlang/v.git
synced 2025-09-15 07:22:27 +03:00
12 lines
354 B
V
12 lines
354 B
V
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
|
|
}
|