Increase max for output image asserts to 32768
authorMark Adams <marka@nvidia.com>
Mon, 18 Sep 2017 14:22:49 +0000 (10:22 -0400)
committerMark Adams <marka@nvidia.com>
Mon, 18 Sep 2017 19:58:35 +0000 (15:58 -0400)
In framework/qphelper/qpTestLog.c, two assertions assume that the
width and height of the output image are no larger than 16384. But
when testing in 1 x max FBO mode, and max FBO size is larger than
16384, these asserts would fire. This change relaxes the assertions
so they expect sizes up to 32768.

Author: Weiwan Liu <weiwliu@nvidia.com>

Components: Framework

VK-GL-CTS issue: 697

Affects: KHR-GL46.explicit_uniform_location.uniform-loc

Change-Id: If6c674a8728defba971851590b36ac1196c7a39d

framework/qphelper/qpTestLog.c

index 00603c1..383a9e3 100644 (file)
@@ -824,8 +824,8 @@ deBool qpTestLog_writeImage (
        size_t                  writeDataBytes          = ~(size_t)0;
 
        DE_ASSERT(log && name);
-       DE_ASSERT(deInRange32(width, 1, 16384));
-       DE_ASSERT(deInRange32(height, 1, 16384));
+       DE_ASSERT(deInRange32(width, 1, 32768));
+       DE_ASSERT(deInRange32(height, 1, 32768));
        DE_ASSERT(data);
 
        if (log->flags & QP_TEST_LOG_EXCLUDE_IMAGES)