Merge pull request #8910 from vonchenplus/astc_decode_error

video_core: Modify astc texture decode error fill value
This commit is contained in:
bunnei 2022-09-30 15:34:11 -07:00 committed by GitHub
commit d9e375acc3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -1413,7 +1413,7 @@ static void FillVoidExtentLDR(InputBitStream& strm, std::span<u32> outBuf, u32 b
static void FillError(std::span<u32> outBuf, u32 blockWidth, u32 blockHeight) {
for (u32 j = 0; j < blockHeight; j++) {
for (u32 i = 0; i < blockWidth; i++) {
outBuf[j * blockWidth + i] = 0xFFFF00FF;
outBuf[j * blockWidth + i] = 0x00000000;
}
}
}