Add LOG_TEST_CASE as per request

This commit is contained in:
Luke Usher 2020-05-08 09:04:58 +01:00
parent 543756d712
commit b0bcc2fd9b
1 changed files with 3 additions and 0 deletions

View File

@ -3766,8 +3766,11 @@ void GetMultiSampleOffsetAndScale(float& xScale, float& yScale, float& xOffset,
case XTL::X_D3DMULTISAMPLE_2_SAMPLES_MULTISAMPLE_QUINCUNX:
case XTL::X_D3DMULTISAMPLE_4_SAMPLES_MULTISAMPLE_LINEAR:
case XTL::X_D3DMULTISAMPLE_4_SAMPLES_MULTISAMPLE_GAUSSIAN:
xOffset = yOffset = 0.0f;
break;
case XTL::X_D3DMULTISAMPLE_9_SAMPLES_MULTISAMPLE_GAUSSIAN:
xOffset = yOffset = 0.0f;
LOG_TEST_CASE("X_D3DMULTISAMPLE_9_SAMPLES_MULTISAMPLE_GAUSSIAN");
break;
}