Files
LNXRNT/Kinc/Backends/Graphics5/Direct3D12/Sources/kinc/backend/graphics5/constantbuffer.h
2025-01-29 10:55:49 +01:00

22 lines
324 B
C

#pragma once
#ifdef __cplusplus
extern "C" {
#endif
struct ID3D12Resource;
typedef struct {
struct ID3D12Resource *constant_buffer;
int lastStart;
int lastCount;
int mySize;
} ConstantBuffer5Impl;
KINC_FUNC extern bool kinc_g5_transposeMat3;
KINC_FUNC extern bool kinc_g5_transposeMat4;
#ifdef __cplusplus
}
#endif