Skip to content

Commit 07327cc

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 7108cb9 commit 07327cc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/render/wiiu/SDL_render_wiiu.c

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

361361
SDL_PIXELFORMAT_ARGB2101010,
362362
},
363-
.max_texture_width = 0,
364-
.max_texture_height = 0,
363+
.max_texture_width = 8192,
364+
.max_texture_height = 8192,
365365
},
366366
};
367367

0 commit comments

Comments
 (0)