OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2012 Google Inc. | 2 * Copyright 2012 Google Inc. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 | 7 |
8 #include "GrSurface.h" | 8 #include "GrSurface.h" |
9 #include "GrContext.h" | 9 #include "GrContext.h" |
10 #include "GrSurfacePriv.h" | 10 #include "GrSurfacePriv.h" |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 ////////////////////////////////////////////////////////////////////////////// | 93 ////////////////////////////////////////////////////////////////////////////// |
94 | 94 |
95 bool GrSurface::writePixels(int left, int top, int width, int height, | 95 bool GrSurface::writePixels(int left, int top, int width, int height, |
96 GrPixelConfig config, const void* buffer, size_t row
Bytes, | 96 GrPixelConfig config, const void* buffer, size_t row
Bytes, |
97 uint32_t pixelOpsFlags) { | 97 uint32_t pixelOpsFlags) { |
98 // go through context so that all necessary flushing occurs | 98 // go through context so that all necessary flushing occurs |
99 GrContext* context = this->getContext(); | 99 GrContext* context = this->getContext(); |
100 if (nullptr == context) { | 100 if (nullptr == context) { |
101 return false; | 101 return false; |
102 } | 102 } |
103 return context->writeSurfacePixels(this, left, top, width, height, config, b
uffer, rowBytes, | 103 return context->writeSurfacePixels(this, left, top, width, height, config, b
uffer, |
104 pixelOpsFlags); | 104 rowBytes, pixelOpsFlags); |
105 } | 105 } |
106 | 106 |
107 bool GrSurface::readPixels(int left, int top, int width, int height, | 107 bool GrSurface::readPixels(int left, int top, int width, int height, |
108 GrPixelConfig config, void* buffer, size_t rowBytes, | 108 GrPixelConfig config, void* buffer, size_t rowBytes, |
109 uint32_t pixelOpsFlags) { | 109 uint32_t pixelOpsFlags) { |
110 // go through context so that all necessary flushing occurs | 110 // go through context so that all necessary flushing occurs |
111 GrContext* context = this->getContext(); | 111 GrContext* context = this->getContext(); |
112 if (nullptr == context) { | 112 if (nullptr == context) { |
113 return false; | 113 return false; |
114 } | 114 } |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
203 | 203 |
204 void GrSurface::onRelease() { | 204 void GrSurface::onRelease() { |
205 this->invokeReleaseProc(); | 205 this->invokeReleaseProc(); |
206 this->INHERITED::onRelease(); | 206 this->INHERITED::onRelease(); |
207 } | 207 } |
208 | 208 |
209 void GrSurface::onAbandon() { | 209 void GrSurface::onAbandon() { |
210 this->invokeReleaseProc(); | 210 this->invokeReleaseProc(); |
211 this->INHERITED::onAbandon(); | 211 this->INHERITED::onAbandon(); |
212 } | 212 } |
OLD | NEW |