20 lines
234 B
C
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
|