10 lines
182 B
C++
10 lines
182 B
C++
|
#include "sokol_app.h"
|
||
|
#include "sokol_gfx.h"
|
||
|
#define SOKOL_IMPL
|
||
|
#include "sokol_glue.h"
|
||
|
|
||
|
void use_glue_impl() {
|
||
|
const sg_environment ctx = sglue_environment();
|
||
|
(void)ctx;
|
||
|
}
|