Use aligned stride in sceGxmColorSurfaceInit

This commit is contained in:
Northfear 2021-09-20 23:02:43 +03:00 committed by Sam Lantinga
parent 7080bc2a91
commit fc4296c114
1 changed files with 2 additions and 1 deletions

View File

@ -1056,6 +1056,7 @@ create_gxm_texture(VITA_GXM_RenderData *data, unsigned int w, unsigned int h, Sc
const uint32_t alignedHeight = ALIGN(h, SCE_GXM_TILE_SIZEY);
uint32_t sampleCount = alignedWidth*alignedHeight;
uint32_t depthStrideInSamples = alignedWidth;
const uint32_t alignedColorSurfaceStride = ALIGN(w, 8);
int err = sceGxmColorSurfaceInit(
&texture->gxm_colorsurface,
@ -1065,7 +1066,7 @@ create_gxm_texture(VITA_GXM_RenderData *data, unsigned int w, unsigned int h, Sc
SCE_GXM_OUTPUT_REGISTER_SIZE_32BIT,
w,
h,
w,
alignedColorSurfaceStride,
texture_data
);