v/renderer/graphics_private.h
2026-04-28 19:46:41 +02:00

17 lines
290 B
C

//
// Created by Vicente Ferrari Smith on 02.03.26.
//
#ifndef V_GRAPHICS_PRIVATE_H
#define V_GRAPHICS_PRIVATE_H
#ifdef __EMSCRIPTEN__
#include <GLFW/emscripten_glfw3.h>
#else
#include <GLFW/glfw3.h>
#endif
void platform_graphics_init(GLFWwindow *window);
#endif //V_GRAPHICS_PRIVATE_H