mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-06 17:48:37 +00:00
LibGL: Implement glMultMatrixf
This commit is contained in:
parent
40724a426f
commit
7ac8cd057e
Notes:
sideshowbarker
2024-07-17 22:52:31 +09:00
Author: https://github.com/gmta
Commit: 7ac8cd057e
Pull-request: https://github.com/SerenityOS/serenity/pull/11154
Reviewed-by: https://github.com/sunverwerth ✅
5 changed files with 48 additions and 13 deletions
|
@ -46,6 +46,7 @@ public:
|
|||
virtual void gl_ortho(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble near_val, GLdouble far_val) override;
|
||||
virtual void gl_push_matrix() override;
|
||||
virtual void gl_pop_matrix() override;
|
||||
virtual void gl_mult_matrix(FloatMatrix4x4 const& matrix) override;
|
||||
virtual void gl_rotate(GLdouble angle, GLdouble x, GLdouble y, GLdouble z) override;
|
||||
virtual void gl_scale(GLdouble x, GLdouble y, GLdouble z) override;
|
||||
virtual void gl_translate(GLdouble x, GLdouble y, GLdouble z) override;
|
||||
|
@ -216,6 +217,7 @@ private:
|
|||
decltype(&SoftwareGLContext::gl_ortho),
|
||||
decltype(&SoftwareGLContext::gl_push_matrix),
|
||||
decltype(&SoftwareGLContext::gl_pop_matrix),
|
||||
decltype(&SoftwareGLContext::gl_mult_matrix),
|
||||
decltype(&SoftwareGLContext::gl_rotate),
|
||||
decltype(&SoftwareGLContext::gl_scale),
|
||||
decltype(&SoftwareGLContext::gl_translate),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue