mirror of
https://github.com/ioquake/ioq3.git
synced 2025-05-30 16:41:31 +00:00
21 lines
635 B
C
21 lines
635 B
C
/*
|
|
* ==================================================================================
|
|
*
|
|
* Filename: R_PrintMat.h
|
|
*
|
|
* Description: print matrix values for debug
|
|
* Author: Sui Jingfeng (), 18949883232@163.com
|
|
* ==================================================================================
|
|
*/
|
|
|
|
#ifndef R_PRINT_MAT_H_
|
|
#define R_PRINT_MAT_H_
|
|
|
|
// data print helper
|
|
void printMat1x3f(const char* name, const float src[3]);
|
|
void printMat1x4f(const char* name, const float src[4]);
|
|
void printMat3x3f(const char* name, const float src[3][3]);
|
|
void printMat4x4f(const char* name, const float src[16]);
|
|
|
|
|
|
#endif
|