| Index: src/gpu/GrBufferAllocPool.cpp
|
| ===================================================================
|
| --- src/gpu/GrBufferAllocPool.cpp (revision 8359)
|
| +++ src/gpu/GrBufferAllocPool.cpp (working copy)
|
| @@ -302,7 +302,7 @@
|
| // threshold (since we don't expect it is likely that we will see more vertex data)
|
| // b) If the hint is not set we lock if the buffer size is greater than the threshold.
|
| bool attemptLock = block.fBuffer->isCPUBacked();
|
| - if (!attemptLock && fGpu->getCaps().bufferLockSupport()) {
|
| + if (!attemptLock && fGpu->caps()->bufferLockSupport()) {
|
| if (fFrequentResetHint) {
|
| attemptLock = requestSize > GR_GEOM_BUFFER_LOCK_THRESHOLD;
|
| } else {
|
| @@ -350,7 +350,7 @@
|
| GrAssert(flushSize <= buffer->sizeInBytes());
|
| VALIDATE(true);
|
|
|
| - if (fGpu->getCaps().bufferLockSupport() &&
|
| + if (fGpu->caps()->bufferLockSupport() &&
|
| flushSize > GR_GEOM_BUFFER_LOCK_THRESHOLD) {
|
| void* data = buffer->lock();
|
| if (NULL != data) {
|
|
|