Skip to content

Commit

Permalink
Fix RGB10_A2UI pixel format (#2511)
Browse files Browse the repository at this point in the history
  • Loading branch information
Luracasmus authored Nov 3, 2024
1 parent d8efc96 commit f989a3c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public enum InternalTextureFormat {
RGB5_A1(GL11C.GL_RGB5_A1, GlVersion.GL_11, PixelFormat.RGBA),
RGB565(GL41C.GL_RGB565, GlVersion.GL_41, PixelFormat.RGB),
RGB10_A2(GL11C.GL_RGB10_A2, GlVersion.GL_11, PixelFormat.RGBA),
RGB10_A2UI(GL33C.GL_RGB10_A2UI, GlVersion.GL_33, PixelFormat.RGBA),
RGB10_A2UI(GL33C.GL_RGB10_A2UI, GlVersion.GL_33, PixelFormat.RGBA_INTEGER),
R11F_G11F_B10F(GL30C.GL_R11F_G11F_B10F, GlVersion.GL_30, PixelFormat.RGB),
RGB9_E5(GL30C.GL_RGB9_E5, GlVersion.GL_30, PixelFormat.RGB);

Expand Down

0 comments on commit f989a3c

Please sign in to comment.