Commit 0c541c30 by Tim Van Patten Committed by Commit Bot

Fix Platform methods list

Functions have to be added to the end of the list to prevent breaking EGL on Android. Bug: angleproject:2634 Change-Id: I19705144d8ab873c13891038f840b9fc96a79103 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/1897646 Commit-Queue: Tim Van Patten <timvp@google.com> Commit-Queue: Jamie Madill <jmadill@chromium.org> Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org>
parent 5883a44b
...@@ -260,8 +260,8 @@ inline void DefaultCacheProgram(PlatformMethods *platform, ...@@ -260,8 +260,8 @@ inline void DefaultCacheProgram(PlatformMethods *platform,
OP(histogramBoolean, HistogramBoolean) \ OP(histogramBoolean, HistogramBoolean) \
OP(overrideWorkaroundsD3D, OverrideWorkaroundsD3D) \ OP(overrideWorkaroundsD3D, OverrideWorkaroundsD3D) \
OP(overrideFeaturesVk, OverrideFeaturesVk) \ OP(overrideFeaturesVk, OverrideFeaturesVk) \
OP(overrideFeaturesMtl, OverrideFeaturesMtl) \ OP(cacheProgram, CacheProgram) \
OP(cacheProgram, CacheProgram) OP(overrideFeaturesMtl, OverrideFeaturesMtl)
#define ANGLE_PLATFORM_METHOD_DEF(Name, CapsName) CapsName##Func Name = Default##CapsName; #define ANGLE_PLATFORM_METHOD_DEF(Name, CapsName) CapsName##Func Name = Default##CapsName;
......
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