Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove glu #23

Merged
merged 4 commits into from
May 20, 2024
Merged

Remove glu #23

merged 4 commits into from
May 20, 2024

Conversation

mardy
Copy link
Collaborator

@mardy mardy commented May 19, 2024

Please review commit by commit.

Includes #22

mardy added 2 commits May 19, 2024 21:21
In the OpenGL clip space the coordinates in each axis are expected to be
in the range [-1, 1]. The GX API differs from this in that the z
coordinate range is half of that: [-1, 0]. In order to work with this
difference, we were modifying the glFrustum(), glOrtho() functions, as
well as some glu functions, so that they'd compute a projection matrix
suitable for the GX API.

This had a series of disadvantages:
- glGetFloatv() would return a projection matrix which is not the one
  expected by the client;
- if the client manually built its own projection matrix, this could
  either not work at all, or render a scene very different from what was
  expected;
- it forces opengx to reimplement some glu functions

This commit fixes these issues by storing the projection matrix
according to the OpenGL specifications, and transforms it to the GX clip
space using a scale+transfor matrix.

Note that the same transformation is applied to the function that we use
to compute the near and far planes, which we need for the fog effect.
They will be provided by the respective libraries.
@WinterMute WinterMute merged commit 2edd089 into devkitPro:master May 20, 2024
2 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants