blob: bfbda0465e1aee07b724298da274d32611526f6c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#pragma once
#include <glfm.h>
#include "window.h"
struct stl_glfm_global {
GLFMDisplay *display;
bool did_main;
GLFMInterfaceOrientation orientation;
};
struct stl_window_glfm {
struct stl_window w;
};
|