Skip to content

Commit 3a5a65e

Browse files
MefiresuGaryOderNichts
authored andcommitted
wiiu/render: Fix missing max texture size
According to https://www.x.org/docs/AMD/old/R6xx_R7xx_3D.pdf in section 1.3 (page 6), GX2 supports textures of up to 8192x8192 resolution.
1 parent 7cf4bf9 commit 3a5a65e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/render/wiiu/SDL_render_wiiu.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -351,8 +351,8 @@ SDL_RenderDriver WIIU_RenderDriver =
351351

352352
SDL_PIXELFORMAT_ARGB2101010,
353353
},
354-
.max_texture_width = 0,
355-
.max_texture_height = 0,
354+
.max_texture_width = 8192,
355+
.max_texture_height = 8192,
356356
},
357357
};
358358

0 commit comments

Comments
 (0)