1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 08:37:46 +00:00

LibGL: Implement glOrtho and underlying functions

This commit is contained in:
Ali Mohammad Pur 2021-04-24 17:40:15 +04:30 committed by Andreas Kling
parent f07a7f7b94
commit f601f12801
5 changed files with 43 additions and 0 deletions

View file

@ -28,6 +28,7 @@ public:
virtual void gl_load_identity() = 0;
virtual void gl_load_matrix(const FloatMatrix4x4& matrix) = 0;
virtual void gl_matrix_mode(GLenum mode) = 0;
virtual void gl_ortho(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble near_val, GLdouble far_val) = 0;
virtual void gl_push_matrix() = 0;
virtual void gl_pop_matrix() = 0;
virtual void gl_rotate(GLdouble angle, GLdouble x, GLdouble y, GLdouble z) = 0;