summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGL
AgeCommit message (Expand)Author
2021-12-12LibGL: Implement `glLineWidth`Jelle Raaijmakers
2021-12-12LibGL: Implement `glLoadMatrixd`Jelle Raaijmakers
2021-12-12LibGL: Implement `glIsList`Jelle Raaijmakers
2021-12-12LibGL: Implement `glTranslated`Jelle Raaijmakers
2021-12-12LibGL: Implement `glClearStencil`Jelle Raaijmakers
2021-12-12LibGL: Implement `glScaled`Jelle Raaijmakers
2021-12-12LibGL: Add stubs for `glMaterialf` and `glMaterialfv`Jelle Raaijmakers
2021-12-12LibGL: Implement `glRasterPos2i`Jelle Raaijmakers
2021-12-12LibGL: Implement `glNormal3f` and `glNormal3fv`Jelle Raaijmakers
2021-12-12LibGL: Implement `glStencil*` functionsJelle Raaijmakers
2021-12-12LibGL: Implement `GL_STENCIL_TEST`Jelle Raaijmakers
2021-12-12LibGL: Implement `glListBase`Jelle Raaijmakers
2021-12-12LibGL: Implement `glCallLists`Jelle Raaijmakers
2021-12-12LibGL: Implement `glTexCoord2fv`Jelle Raaijmakers
2021-12-12LibGL: Implement `glColor3ub`Jelle Raaijmakers
2021-12-12LibGL: Add stubs for `glLightf` and `glLightfv`Jelle Raaijmakers
2021-12-12LibGL: Implement `glMultMatrixf`Jelle Raaijmakers
2021-12-12LibGL: Implement `glGetDoublev`Jelle Raaijmakers
2021-12-12LibGL: Define `GL_ES_VERSION_2_0`Jelle Raaijmakers
2021-12-11LibGL: Improve mipmap lookup in Texture2DJelle Raaijmakers
2021-12-11LibGL: Always inline `to_rgba32()`Jelle Raaijmakers
2021-12-11LibGL: Fix scissor box coordinate systemJelle Raaijmakers
2021-12-11LibGL: Remove unused default from rasterizer scissor_boxJelle Raaijmakers
2021-12-11LibGL: Use simpler syntax for `GL_SCISSOR_BOX` retrievalJelle Raaijmakers
2021-12-11LibGL: Make `glDeleteTextures` skip over 0 namesJelle Raaijmakers
2021-12-11LibGL: Remove unnecessary `break;` from SoftwareGLContextJelle Raaijmakers
2021-12-11LibGL: Fix a number of enum values in `gl.h`Jelle Raaijmakers
2021-12-11LibGL: Implement `GL_(UN)PACK_ALIGNMENT`Jelle Raaijmakers
2021-12-11LibGL: Use `Array::back()` for last mipmap selectionJelle Raaijmakers
2021-12-01LibGL: Add `GL::present_context()`Jelle Raaijmakers
2021-12-01LibGL: Remove `TextureUnit::unbind_texture()`Jelle Raaijmakers
2021-12-01LibGL: Implement texture unit texturing statesJelle Raaijmakers
2021-11-29LibGL: Mark SoftwareGLContext::gl_scissor as overrideHendiadyoin1
2021-11-28LibGL: Initialize all GL context matrices with the identity matrixStephan Unverwerth
2021-11-28LibGL: Implement `glScissor()`Jelle Raaijmakers
2021-11-08LibGfx: Use ErrorOr<T> for Bitmap::try_create()Andreas Kling
2021-10-17LibGL: Implement `glIsEnabled()`Jelle Raaijmakers
2021-10-17LibGL: Implement disabling GL_FOGJelle Raaijmakers
2021-10-17LibGL: Correct GL_MODELVIEW and GL_PROJECTION valuesJelle Raaijmakers
2021-10-08Libraries: Fix -Wunreachable-code warnings from clangNico Weber
2021-10-02LibGL: Remove duplicate GLboolean typedefLinus Groh
2021-10-01Libraries: Fix typosNico Weber
2021-09-07Everywhere: Behaviour => BehaviorAndreas Kling
2021-09-03Everywhere: Prevent risky implicit casts of (Nonnull)RefPtrDaniel Bertalan
2021-09-02LibGL: Implement glTexSubImage2DStephan Unverwerth
2021-09-02LibGL: Add GL_TETXURE*_ARB aliasesStephan Unverwerth
2021-09-02LibGL: Support additional enums in glGetIntegervStephan Unverwerth
2021-09-02LibGL: Fix glTexImage2D texture dimension validationStephan Unverwerth
2021-09-02LibGL: Allow numerical internal formats in glTexImage2DStephan Unverwerth
2021-09-02LibGL: Implement glPolygonOffsetStephan Unverwerth