blob: 7f60dc76952789910f90182c47cc82796e677b93 (
plain)
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
|
module sapp
import sokol.gfx
pub const (
used_import = gfx.used_import
)
// Android needs a global reference to `g_desc`
__global (
g_desc C.sapp_desc
)
pub fn create_desc() C.sg_desc {
metal_desc := C.sg_metal_context_desc{
device: metal_get_device()
renderpass_descriptor_cb: metal_get_renderpass_descriptor
drawable_cb: metal_get_drawable
}
d3d11_desc := C.sg_d3d11_context_desc{
device: d3d11_get_device()
device_context: d3d11_get_device_context()
render_target_view_cb: d3d11_get_render_target_view
depth_stencil_view_cb: d3d11_get_depth_stencil_view
}
return C.sg_desc{
context: C.sg_context_desc{
metal: metal_desc
d3d11: d3d11_desc
color_format: .bgra8
}
image_pool_size: 1000
}
}
// returns true after sokol-app has been initialized
[inline]
pub fn isvalid() bool {
return C.sapp_isvalid()
}
// returns the current framebuffer width in pixels
[inline]
pub fn width() int {
return C.sapp_width()
}
// returns the current framebuffer height in pixels
[inline]
pub fn height() int {
return C.sapp_height()
}
// returns true when high_dpi was requested and actually running in a high-dpi scenario
[inline]
pub fn high_dpi() bool {
return C.sapp_high_dpi()
}
// returns the dpi scaling factor (window pixels to framebuffer pixels)
[inline]
pub fn dpi_scale() f32 {
return C.sapp_dpi_scale()
}
// show or hide the mobile device onscreen keyboard
[inline]
pub fn show_keyboard(visible bool) {
C.sapp_show_keyboard(visible)
}
// return true if the mobile device onscreen keyboard is currently shown
[inline]
pub fn keyboard_shown() bool {
return C.sapp_keyboard_shown()
}
// show or hide the mouse cursor
[inline]
pub fn show_mouse(visible bool) {
C.sapp_show_mouse(visible)
}
// show or hide the mouse cursor
[inline]
pub fn mouse_shown() bool {
return C.sapp_mouse_shown()
}
[inline]
pub fn lock_mouse(locked bool) {
C.sapp_lock_mouse(locked)
}
[inline]
pub fn mouse_locked() bool {
return C.sapp_mouse_locked()
}
// return the userdata pointer optionally provided in sapp_desc
[inline]
pub fn userdata() voidptr {
return C.sapp_userdata()
}
// return a copy of the sapp_desc structure
[inline]
pub fn query_desc() C.sapp_desc {
return C.sapp_query_desc()
}
// initiate a "soft quit" (sends SAPP_EVENTTYPE_QUIT_REQUESTED)
[inline]
pub fn request_quit() {
C.sapp_request_quit()
}
// cancel a pending quit (when SAPP_EVENTTYPE_QUIT_REQUESTED has been received)
[inline]
pub fn cancel_quit() {
C.sapp_cancel_quit()
}
// intiate a "hard quit" (quit application without sending SAPP_EVENTTYPE_QUIT_REQUSTED)
[inline]
pub fn quit() {
C.sapp_quit()
}
// call from inside event callback to consume the current event (don't forward to platform)
[inline]
pub fn consume_event() {
C.sapp_consume_event()
}
// get the current frame counter (for comparison with sapp_event.frame_count)
[inline]
pub fn frame_count() u64 {
return C.sapp_frame_count()
}
// write string into clipboard
[inline]
pub fn set_clipboard_string(str &char) {
C.sapp_set_clipboard_string(str)
}
// read string from clipboard (usually during SAPP_EVENTTYPE_CLIPBOARD_PASTED)
[inline]
pub fn get_clipboard_string() &char {
return &char(C.sapp_get_clipboard_string())
}
// special run-function for SOKOL_NO_ENTRY (in standard mode this is an empty stub)
[inline]
pub fn run(desc &C.sapp_desc) {
g_desc = desc
C.sapp_run(desc)
}
// GL: return true when GLES2 fallback is active (to detect fallback from GLES3)
[inline]
pub fn gles2() bool {
return C.sapp_gles2()
}
// HTML5: enable or disable the hardwired "Leave Site?" dialog box
[inline]
pub fn html5_ask_leave_site(ask bool) {
C.sapp_html5_ask_leave_site(ask)
}
// Metal: get ARC-bridged pointer to Metal device object
[inline]
pub fn metal_get_device() voidptr {
return voidptr(C.sapp_metal_get_device())
}
// Metal: get ARC-bridged pointer to this frame's renderpass descriptor
[inline]
pub fn metal_get_renderpass_descriptor() voidptr {
return voidptr(C.sapp_metal_get_renderpass_descriptor())
}
// Metal: get ARC-bridged pointer to current drawable
[inline]
pub fn metal_get_drawable() voidptr {
return voidptr(C.sapp_metal_get_drawable())
}
// macOS: get ARC-bridged pointer to macOS NSWindow
[inline]
pub fn macos_get_window() voidptr {
return voidptr(C.sapp_macos_get_window())
}
// iOS: get ARC-bridged pointer to iOS UIWindow
[inline]
pub fn ios_get_window() voidptr {
return voidptr(C.sapp_ios_get_window())
}
// D3D11: get pointer to ID3D11Device object
[inline]
pub fn d3d11_get_device() voidptr {
return voidptr(C.sapp_d3d11_get_device())
}
// D3D11: get pointer to ID3D11DeviceContext object
[inline]
pub fn d3d11_get_device_context() voidptr {
return voidptr(C.sapp_d3d11_get_device_context())
}
// D3D11: get pointer to ID3D11RenderTargetView object
[inline]
pub fn d3d11_get_render_target_view() voidptr {
return voidptr(C.sapp_d3d11_get_render_target_view())
}
// D3D11: get pointer to ID3D11DepthStencilView
[inline]
pub fn d3d11_get_depth_stencil_view() voidptr {
return voidptr(C.sapp_d3d11_get_depth_stencil_view())
}
// Win32: get the HWND window handle
[inline]
pub fn win32_get_hwnd() voidptr {
return voidptr(C.sapp_win32_get_hwnd())
}
// Android: get native activity handle
[inline]
pub fn android_get_native_activity() voidptr {
return voidptr(C.sapp_android_get_native_activity())
}
|