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

19 lines
313 B
C

#pragma once
#ifdef __cplusplus
extern "C" {
#endif
struct ID3D11Texture2D;
struct ID3D11ShaderResourceView;
typedef struct {
struct ID3D11Texture2D *texture;
struct ID3D11ShaderResourceView *view;
// void set(Kore::Graphics4::TextureUnit unit);
} kinc_g4_texture_array_impl_t;
#ifdef __cplusplus
}
#endif