mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-10-29 23:36:02 +03:00
21 lines
355 B
C++
21 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
|