mirror of
https://github.com/Karaka-Management/cOMS.git
synced 2026-01-11 11:18:40 +00:00
21 lines
399 B
C
21 lines
399 B
C
/**
|
|
* Jingga
|
|
*
|
|
* @copyright Jingga
|
|
* @license OMS License 2.0
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
#ifndef TOS_GPUAPI_OPENGL_GPU_API_CONTAINER
|
|
#define TOS_GPUAPI_OPENGL_GPU_API_CONTAINER
|
|
|
|
#include "../../stdlib/Types.h"
|
|
#include "OpenglUtils.h"
|
|
|
|
struct GpuApiContainer {
|
|
uint32 frames_in_flight;
|
|
uint32 framebuffer_idx;
|
|
OpenglFrameData* framebuffers;
|
|
};
|
|
|
|
#endif |