35 lines
783 B
C
35 lines
783 B
C
#include <kinc/graphics5/constantbuffer.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
bool kinc_g5_transposeMat3 = false;
|
|
bool kinc_g5_transposeMat4 = false;
|
|
|
|
void kinc_g5_constant_buffer_init(kinc_g5_constant_buffer_t *buffer, int size) {
|
|
|
|
}
|
|
|
|
void kinc_g5_constant_buffer_destroy(kinc_g5_constant_buffer_t *buffer) {}
|
|
|
|
void kinc_g5_constant_buffer_lock_all(kinc_g5_constant_buffer_t *buffer) {
|
|
kinc_g5_constant_buffer_lock(buffer, 0, kinc_g5_constant_buffer_size(buffer));
|
|
}
|
|
|
|
void kinc_g5_constant_buffer_lock(kinc_g5_constant_buffer_t *buffer, int start, int count) {}
|
|
|
|
void kinc_g5_constant_buffer_unlock(kinc_g5_constant_buffer_t *buffer) {
|
|
|
|
}
|
|
|
|
int kinc_g5_constant_buffer_size(kinc_g5_constant_buffer_t *buffer) {
|
|
return 0;
|
|
}
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|