Commit 5ed601b4 by Frank Henigman Committed by Commit Bot

Fix IsOzone() predicate.

ANGLE_USE_OZONE is not defined in tests, but USE_OZONE is so use the latter. BUG=angleproject:1423 Change-Id: Ib758fec6a1bb8d5cc66d0994cba2142e6a7f82b0 Reviewed-on: https://chromium-review.googlesource.com/474113 Commit-Queue: Geoff Lang <geofflang@chromium.org> Reviewed-by: 's avatarGeoff Lang <geofflang@chromium.org>
parent 20e005b2
......@@ -882,7 +882,7 @@ bool IsVulkan()
bool IsOzone()
{
#if defined(ANGLE_USE_OZONE)
#if defined(USE_OZONE)
return true;
#else
return false;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment