File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed
Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -374,6 +374,14 @@ bool os_window_is_focused(void) {
374374 return false;
375375}
376376
377+ bool os_window_is_fullscreen (void ) {
378+ return false;
379+ }
380+
381+ void os_window_set_fullscreen (bool fullscreen ) {
382+ //
383+ }
384+
377385void os_window_get_size (uint32_t * width , uint32_t * height ) {
378386 * width = * height = 0 ;
379387}
Original file line number Diff line number Diff line change @@ -351,6 +351,14 @@ bool os_window_is_focused(void) {
351351 return true;
352352}
353353
354+ bool os_window_is_fullscreen (void ) {
355+ return false;
356+ }
357+
358+ void os_window_set_fullscreen (bool fullscreen ) {
359+ //
360+ }
361+
354362void os_window_get_size (uint32_t * width , uint32_t * height ) {
355363 * width = state .width ;
356364 * height = state .height ;
You can’t perform that action at this time.
0 commit comments