-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsokol_gl.nelua
145 lines (145 loc) · 9.62 KB
/
sokol_gl.nelua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
##[[
if not SOKOL_GL_NO_IMPL then
cdefine 'SOKOL_GL_API_DECL static'
cdefine 'SOKOL_GL_IMPL'
end
cinclude 'sokol_gl.h'
]]
global sgl_log_item_t: type <cimport,nodecl,using> = @enum(cint){
SGL_LOGITEM_OK = 0,
SGL_LOGITEM_MALLOC_FAILED = 1,
SGL_LOGITEM_MAKE_PIPELINE_FAILED = 2,
SGL_LOGITEM_PIPELINE_POOL_EXHAUSTED = 3,
SGL_LOGITEM_ADD_COMMIT_LISTENER_FAILED = 4,
SGL_LOGITEM_CONTEXT_POOL_EXHAUSTED = 5,
SGL_LOGITEM_CANNOT_DESTROY_DEFAULT_CONTEXT = 6
}
global sgl_logger_t: type <cimport,nodecl> = @record{
func: function(cstring, uint32, uint32, cstring, uint32, cstring, pointer): void,
user_data: pointer
}
global sgl_pipeline: type <cimport,nodecl> = @record{
id: uint32
}
global sgl_context: type <cimport,nodecl> = @record{
id: uint32
}
global sgl_error_t: type <cimport,nodecl,using> = @enum(cint){
SGL_NO_ERROR = 0,
SGL_ERROR_VERTICES_FULL = 1,
SGL_ERROR_UNIFORMS_FULL = 2,
SGL_ERROR_COMMANDS_FULL = 3,
SGL_ERROR_STACK_OVERFLOW = 4,
SGL_ERROR_STACK_UNDERFLOW = 5,
SGL_ERROR_NO_CONTEXT = 6
}
global sgl_context_desc_t: type <cimport,nodecl> = @record{
max_vertices: cint,
max_commands: cint,
color_format: sg_pixel_format,
depth_format: sg_pixel_format,
sample_count: cint
}
global sgl_allocator_t: type <cimport,nodecl> = @record{
alloc: function(csize, pointer): pointer,
free: function(pointer, pointer): void,
user_data: pointer
}
global sgl_desc_t: type <cimport,nodecl> = @record{
max_vertices: cint,
max_commands: cint,
context_pool_size: cint,
pipeline_pool_size: cint,
color_format: sg_pixel_format,
depth_format: sg_pixel_format,
sample_count: cint,
face_winding: sg_face_winding,
allocator: sgl_allocator_t,
logger: sgl_logger_t
}
global function sgl_setup(desc: *sgl_desc_t): void <cimport,nodecl> end
global function sgl_shutdown(): void <cimport,nodecl> end
global function sgl_rad(deg: float32): float32 <cimport,nodecl> end
global function sgl_deg(rad: float32): float32 <cimport,nodecl> end
global function sgl_error(): sgl_error_t <cimport,nodecl> end
global function sgl_context_error(ctx: sgl_context): sgl_error_t <cimport,nodecl> end
global function sgl_make_context(desc: *sgl_context_desc_t): sgl_context <cimport,nodecl> end
global function sgl_destroy_context(ctx: sgl_context): void <cimport,nodecl> end
global function sgl_set_context(ctx: sgl_context): void <cimport,nodecl> end
global function sgl_get_context(): sgl_context <cimport,nodecl> end
global function sgl_default_context(): sgl_context <cimport,nodecl> end
global function sgl_draw(): void <cimport,nodecl> end
global function sgl_context_draw(ctx: sgl_context): void <cimport,nodecl> end
global function sgl_draw_layer(layer_id: cint): void <cimport,nodecl> end
global function sgl_context_draw_layer(ctx: sgl_context, layer_id: cint): void <cimport,nodecl> end
global function sgl_make_pipeline(desc: *sg_pipeline_desc): sgl_pipeline <cimport,nodecl> end
global function sgl_context_make_pipeline(ctx: sgl_context, desc: *sg_pipeline_desc): sgl_pipeline <cimport,nodecl> end
global function sgl_destroy_pipeline(pip: sgl_pipeline): void <cimport,nodecl> end
global function sgl_defaults(): void <cimport,nodecl> end
global function sgl_viewport(x: cint, y: cint, w: cint, h: cint, origin_top_left: boolean): void <cimport,nodecl> end
global function sgl_viewportf(x: float32, y: float32, w: float32, h: float32, origin_top_left: boolean): void <cimport,nodecl> end
global function sgl_scissor_rect(x: cint, y: cint, w: cint, h: cint, origin_top_left: boolean): void <cimport,nodecl> end
global function sgl_scissor_rectf(x: float32, y: float32, w: float32, h: float32, origin_top_left: boolean): void <cimport,nodecl> end
global function sgl_enable_texture(): void <cimport,nodecl> end
global function sgl_disable_texture(): void <cimport,nodecl> end
global function sgl_texture(img: sg_image): void <cimport,nodecl> end
global function sgl_layer(layer_id: cint): void <cimport,nodecl> end
global function sgl_load_default_pipeline(): void <cimport,nodecl> end
global function sgl_load_pipeline(pip: sgl_pipeline): void <cimport,nodecl> end
global function sgl_push_pipeline(): void <cimport,nodecl> end
global function sgl_pop_pipeline(): void <cimport,nodecl> end
global function sgl_matrix_mode_modelview(): void <cimport,nodecl> end
global function sgl_matrix_mode_projection(): void <cimport,nodecl> end
global function sgl_matrix_mode_texture(): void <cimport,nodecl> end
global function sgl_load_identity(): void <cimport,nodecl> end
global function sgl_load_matrix(m: *float32): void <cimport,nodecl> end
global function sgl_load_transpose_matrix(m: *float32): void <cimport,nodecl> end
global function sgl_mult_matrix(m: *float32): void <cimport,nodecl> end
global function sgl_mult_transpose_matrix(m: *float32): void <cimport,nodecl> end
global function sgl_rotate(angle_rad: float32, x: float32, y: float32, z: float32): void <cimport,nodecl> end
global function sgl_scale(x: float32, y: float32, z: float32): void <cimport,nodecl> end
global function sgl_translate(x: float32, y: float32, z: float32): void <cimport,nodecl> end
global function sgl_frustum(l: float32, r: float32, b: float32, t: float32, n: float32, f: float32): void <cimport,nodecl> end
global function sgl_ortho(l: float32, r: float32, b: float32, t: float32, n: float32, f: float32): void <cimport,nodecl> end
global function sgl_perspective(fov_y: float32, aspect: float32, z_near: float32, z_far: float32): void <cimport,nodecl> end
global function sgl_lookat(eye_x: float32, eye_y: float32, eye_z: float32, center_x: float32, center_y: float32, center_z: float32, up_x: float32, up_y: float32, up_z: float32): void <cimport,nodecl> end
global function sgl_push_matrix(): void <cimport,nodecl> end
global function sgl_pop_matrix(): void <cimport,nodecl> end
global function sgl_t2f(u: float32, v: float32): void <cimport,nodecl> end
global function sgl_c3f(r: float32, g: float32, b: float32): void <cimport,nodecl> end
global function sgl_c4f(r: float32, g: float32, b: float32, a: float32): void <cimport,nodecl> end
global function sgl_c3b(r: uint8, g: uint8, b: uint8): void <cimport,nodecl> end
global function sgl_c4b(r: uint8, g: uint8, b: uint8, a: uint8): void <cimport,nodecl> end
global function sgl_c1i(rgba: uint32): void <cimport,nodecl> end
global function sgl_point_size(s: float32): void <cimport,nodecl> end
global function sgl_begin_points(): void <cimport,nodecl> end
global function sgl_begin_lines(): void <cimport,nodecl> end
global function sgl_begin_line_strip(): void <cimport,nodecl> end
global function sgl_begin_triangles(): void <cimport,nodecl> end
global function sgl_begin_triangle_strip(): void <cimport,nodecl> end
global function sgl_begin_quads(): void <cimport,nodecl> end
global function sgl_v2f(x: float32, y: float32): void <cimport,nodecl> end
global function sgl_v3f(x: float32, y: float32, z: float32): void <cimport,nodecl> end
global function sgl_v2f_t2f(x: float32, y: float32, u: float32, v: float32): void <cimport,nodecl> end
global function sgl_v3f_t2f(x: float32, y: float32, z: float32, u: float32, v: float32): void <cimport,nodecl> end
global function sgl_v2f_c3f(x: float32, y: float32, r: float32, g: float32, b: float32): void <cimport,nodecl> end
global function sgl_v2f_c3b(x: float32, y: float32, r: uint8, g: uint8, b: uint8): void <cimport,nodecl> end
global function sgl_v2f_c4f(x: float32, y: float32, r: float32, g: float32, b: float32, a: float32): void <cimport,nodecl> end
global function sgl_v2f_c4b(x: float32, y: float32, r: uint8, g: uint8, b: uint8, a: uint8): void <cimport,nodecl> end
global function sgl_v2f_c1i(x: float32, y: float32, rgba: uint32): void <cimport,nodecl> end
global function sgl_v3f_c3f(x: float32, y: float32, z: float32, r: float32, g: float32, b: float32): void <cimport,nodecl> end
global function sgl_v3f_c3b(x: float32, y: float32, z: float32, r: uint8, g: uint8, b: uint8): void <cimport,nodecl> end
global function sgl_v3f_c4f(x: float32, y: float32, z: float32, r: float32, g: float32, b: float32, a: float32): void <cimport,nodecl> end
global function sgl_v3f_c4b(x: float32, y: float32, z: float32, r: uint8, g: uint8, b: uint8, a: uint8): void <cimport,nodecl> end
global function sgl_v3f_c1i(x: float32, y: float32, z: float32, rgba: uint32): void <cimport,nodecl> end
global function sgl_v2f_t2f_c3f(x: float32, y: float32, u: float32, v: float32, r: float32, g: float32, b: float32): void <cimport,nodecl> end
global function sgl_v2f_t2f_c3b(x: float32, y: float32, u: float32, v: float32, r: uint8, g: uint8, b: uint8): void <cimport,nodecl> end
global function sgl_v2f_t2f_c4f(x: float32, y: float32, u: float32, v: float32, r: float32, g: float32, b: float32, a: float32): void <cimport,nodecl> end
global function sgl_v2f_t2f_c4b(x: float32, y: float32, u: float32, v: float32, r: uint8, g: uint8, b: uint8, a: uint8): void <cimport,nodecl> end
global function sgl_v2f_t2f_c1i(x: float32, y: float32, u: float32, v: float32, rgba: uint32): void <cimport,nodecl> end
global function sgl_v3f_t2f_c3f(x: float32, y: float32, z: float32, u: float32, v: float32, r: float32, g: float32, b: float32): void <cimport,nodecl> end
global function sgl_v3f_t2f_c3b(x: float32, y: float32, z: float32, u: float32, v: float32, r: uint8, g: uint8, b: uint8): void <cimport,nodecl> end
global function sgl_v3f_t2f_c4f(x: float32, y: float32, z: float32, u: float32, v: float32, r: float32, g: float32, b: float32, a: float32): void <cimport,nodecl> end
global function sgl_v3f_t2f_c4b(x: float32, y: float32, z: float32, u: float32, v: float32, r: uint8, g: uint8, b: uint8, a: uint8): void <cimport,nodecl> end
global function sgl_v3f_t2f_c1i(x: float32, y: float32, z: float32, u: float32, v: float32, rgba: uint32): void <cimport,nodecl> end
global function sgl_end(): void <cimport,nodecl> end