nv2a: Verify surface format X1R5G5B5_Z1R5G5B5

This commit is contained in:
Mike 2021-03-13 17:03:48 -06:00 committed by mborgerson
parent 1c6f85cdd9
commit ceee8d67b9
1 changed files with 0 additions and 1 deletions

View File

@ -2999,7 +2999,6 @@ DEF_METHOD(NV097, CLEAR_SURFACE)
red = ((clear_color >> 10) & 0x1F) / 31.0f;
green = ((clear_color >> 5) & 0x1F) / 31.0f;
blue = (clear_color & 0x1F) / 31.0f;
assert(false); /* Untested */
break;
case NV097_SET_SURFACE_FORMAT_COLOR_LE_R5G6B5:
red = ((clear_color >> 11) & 0x1F) / 31.0f;