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

20 lines
234 B
C

#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef struct {
unsigned int texture;
#ifdef KORE_ANDROID
bool external_oes;
#endif
uint8_t pixfmt;
} kinc_g4_texture_impl_t;
#ifdef __cplusplus
}
#endif