15 lines
181 B
C
15 lines
181 B
C
#pragma once
|
|
|
|
#include <kinc/image.h>
|
|
|
|
typedef struct {
|
|
int index;
|
|
bool vertex;
|
|
} TextureUnit5Impl;
|
|
|
|
typedef struct {
|
|
void *_tex;
|
|
void *data;
|
|
bool has_mipmaps;
|
|
} Texture5Impl;
|