mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-12 19:22:30 +00:00
20 lines
355 B
C++
20 lines
355 B
C++
#ifndef GX_COORDINATE_HPP
|
|
#define GX_COORDINATE_HPP
|
|
|
|
float CoordinateGetAspectCompensation(void);
|
|
|
|
void CoordinateSetAspectRatio(float);
|
|
|
|
void DDCToNDC(float, float, float*, float*);
|
|
|
|
float DDCToNDCHeight(float);
|
|
|
|
float DDCToNDCWidth(float);
|
|
|
|
void NDCToDDC(float, float, float*, float*);
|
|
|
|
float NDCToDDCHeight(float);
|
|
|
|
float NDCToDDCWidth(float);
|
|
|
|
#endif
|