17 lines
206 B
C
17 lines
206 B
C
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct {
|
|
unsigned programId;
|
|
char **textures;
|
|
int *textureValues;
|
|
int textureCount;
|
|
} kinc_g4_pipeline_impl_t;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|