Files
LNXRNT/Kinc/Backends/Graphics4/Direct3D11/Sources/kinc/backend/graphics4/constantbuffer.h

15 lines
223 B
C
Raw Normal View History

2025-01-29 10:55:49 +01:00
#pragma once
#ifdef KINC_KONG
struct ID3D11Buffer;
typedef struct kinc_g4_constant_buffer_impl {
struct ID3D11Buffer *buffer;
size_t size;
size_t last_start;
size_t last_size;
} kinc_g4_constant_buffer_impl;
#endif