22 lines
733 B
C
22 lines
733 B
C
#pragma once
|
|
|
|
#include <kinc/graphics5/rendertarget.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
enum kinc_internal_render_target_state { KINC_INTERNAL_RENDER_TARGET_STATE_RENDER_TARGET, KINC_INTERNAL_RENDER_TARGET_STATE_TEXTURE };
|
|
|
|
typedef struct {
|
|
// RenderTargetImpl(int width, int height, int depthBufferBits, bool antialiasing, Graphics5::RenderTargetFormat format, int stencilBufferBits,
|
|
// int contextId);
|
|
// RenderTargetImpl(int cubeMapSize, int depthBufferBits, bool antialiasing, Graphics5::RenderTargetFormat format, int stencilBufferBits, int contextId);
|
|
kinc_g5_render_target_t _renderTarget;
|
|
enum kinc_internal_render_target_state state;
|
|
} kinc_g4_render_target_impl_t;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|