Files
LNXRNT/Kinc/Backends/Graphics4/OpenGL/Sources/kinc/backend/graphics4/rendertarget.h
2025-01-29 10:55:49 +01:00

21 lines
286 B
C

#pragma once
#include <stdbool.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef struct {
unsigned _framebuffer;
unsigned _texture;
unsigned _depthTexture;
bool _hasDepth;
// unsigned _depthRenderbuffer;
int format;
} kinc_g4_render_target_impl_t;
#ifdef __cplusplus
}
#endif