| Index: src/gpu/gl/GrGLGpu.cpp
|
| diff --git a/src/gpu/gl/GrGLGpu.cpp b/src/gpu/gl/GrGLGpu.cpp
|
| index 91201009668b2772edce756570920b4c12018a0f..f5cd582c903484a0610890a767519e442d60fedf 100644
|
| --- a/src/gpu/gl/GrGLGpu.cpp
|
| +++ b/src/gpu/gl/GrGLGpu.cpp
|
| @@ -2727,6 +2727,15 @@ bool GrGLGpu::canCopySurface(const GrSurface* dst,
|
| return false;
|
| }
|
|
|
| +void GrGLGpu::setXferBarrier(GrXferBarrierType type) {
|
| + switch (type) {
|
| + case kTexture_GrXferBarrierType:
|
| + SkASSERT(this->caps()->textureBarrierSupport());
|
| + GL_CALL(TextureBarrier());
|
| + return;
|
| + }
|
| +}
|
| +
|
| void GrGLGpu::didAddGpuTraceMarker() {
|
| if (this->caps()->gpuTracingSupport()) {
|
| const GrTraceMarkerSet& markerArray = this->getActiveTraceMarkers();
|
|
|