Allow larger texture sizes

This commit is contained in:
José Cadete 2021-02-19 18:52:19 +00:00 committed by Sam Lantinga
parent 4708c6bb96
commit 91fe2b67f5
1 changed files with 2 additions and 2 deletions

View File

@ -118,8 +118,8 @@ SDL_RenderDriver VITA_GXM_RenderDriver = {
[4] = SDL_PIXELFORMAT_RGB565,
[5] = SDL_PIXELFORMAT_BGR565
},
.max_texture_width = 1024,
.max_texture_height = 1024,
.max_texture_width = 4096,
.max_texture_height = 4096,
}
};