Index: src/gpu/effects/GrPorterDuffXferProcessor.cpp |
diff --git a/src/gpu/effects/GrPorterDuffXferProcessor.cpp b/src/gpu/effects/GrPorterDuffXferProcessor.cpp |
index 11af4b6aa02404f5518f8b32883db8346fbc9174..94d3dd67a93ae8df8da4e06b53d41286eddae558 100644 |
--- a/src/gpu/effects/GrPorterDuffXferProcessor.cpp |
+++ b/src/gpu/effects/GrPorterDuffXferProcessor.cpp |
@@ -19,6 +19,7 @@ |
#include "glsl/GrGLSLProgramDataManager.h" |
#include "glsl/GrGLSLUniformHandler.h" |
#include "glsl/GrGLSLXferProcessor.h" |
+#include <utility> |
/** |
* Wraps the shader outputs and HW blend state that comprise a Porter Duff blend mode with coverage. |
@@ -71,7 +72,7 @@ public: |
*/ |
template<OutputType PrimaryOut, OutputType SecondaryOut, |
GrBlendEquation BlendEquation, GrBlendCoeff SrcCoeff, GrBlendCoeff DstCoeff> |
- struct get_properties : skstd::integral_constant<Properties, static_cast<Properties>( |
+ struct get_properties : std::integral_constant<Properties, static_cast<Properties>( |
(GR_BLEND_MODIFIES_DST(BlendEquation, SrcCoeff, DstCoeff) ? |
kModifiesDst_Property : 0) | |