Skip to content

Commit

Permalink
Prepare deqp_support files for the removal of de* types
Browse files Browse the repository at this point in the history
- The de* types were removed by the change:
    https://chromium.googlesource.com/external/github.com/KhronosGroup/VK-GL-CTS.git/+/1a09796462f70cfe2a6117f9bc6af6e3ef74e6ff
- This CL updates ANGLE accordingly.  The change is generated by:
    https://paste.googleplex.com/4847290045169664
- Reference:
    https://github.com/KhronosGroup/VK-GL-CTS/blob/aefd5c09cacdb5a3320da717af6ec646d96c2379/format_all.sh#L17-L41

Notes:
- starting in patchset #10, the CL de-coulples the deqp_support updates
  from the VK-GL-CTS DEPS advance.

Test: presubmit, and the problematic files mentioned in
http://b/343202259#comment3 are updated.
Bug: b/343202259
Change-Id: Idc374fa0873e9ddaafe4c9f861995952f2f5e7e1
Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/5580985
Reviewed-by: Shahbaz Youssefi <[email protected]>
Commit-Queue: Shahbaz Youssefi <[email protected]>
Commit-Queue: Solti Ho <[email protected]>
  • Loading branch information
SoltiGG authored and Angle LUCI CQ committed Jun 3, 2024
1 parent 9ca4c0d commit 62cdd74
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/tests/deqp_support/tcuANGLENativeDisplayFactory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ NativeWindowFactory::NativeWindowFactory(EventState *eventState, uint32_t preRot
eglu::NativeWindow *NativeWindowFactory::createWindow(eglu::NativeDisplay *nativeDisplay,
const eglu::WindowParams &params) const
{
DE_ASSERT(DE_FALSE);
DE_ASSERT(false);
return nullptr;
}

Expand Down Expand Up @@ -334,7 +334,7 @@ void NativeWindow::setVisibility(eglu::WindowParams::Visibility visibility)
break;

default:
DE_ASSERT(DE_FALSE);
DE_ASSERT(false);
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/tests/deqp_support/tcuRandomOrderExecutor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ TestStatus RandomOrderExecutor::execute(const std::string &casePath)
tcu::TestStatus RandomOrderExecutor::executeInner(TestCase *testCase, const std::string &casePath)
{
TestLog &log = m_testCtx.getLog();
const deUint64 testStartTime = deGetMicroseconds();
const uint64_t testStartTime = deGetMicroseconds();

m_testCtx.setTestResult(QP_TEST_RESULT_LAST, "");

Expand Down

0 comments on commit 62cdd74

Please sign in to comment.