HomeSort by relevance Sort by last modified time
    Searched refs:fMapPtr (Results 1 - 20 of 20) sorted by null

  /external/skia/src/gpu/
GrBuffer.h 54 if (!fMapPtr) {
57 return fMapPtr;
66 SkASSERT(fMapPtr);
68 fMapPtr = nullptr;
77 void* mapPtr() const { return fMapPtr; }
84 bool isMapped() const { return SkToBool(fMapPtr); }
113 void* fMapPtr;
121 virtual void onMap() { SkASSERT(this->isCPUBacked()); fMapPtr = fCPUData; }
GrBuffer.cpp 29 , fMapPtr(nullptr)
39 , fMapPtr(nullptr)
  /external/skqp/src/gpu/
GrBuffer.h 54 if (!fMapPtr) {
57 return fMapPtr;
66 SkASSERT(fMapPtr);
68 fMapPtr = nullptr;
77 void* mapPtr() const { return fMapPtr; }
84 bool isMapped() const { return SkToBool(fMapPtr); }
113 void* fMapPtr;
121 virtual void onMap() { SkASSERT(this->isCPUBacked()); fMapPtr = fCPUData; }
GrBuffer.cpp 29 , fMapPtr(nullptr)
39 , fMapPtr(nullptr)
  /external/skia/src/gpu/mock/
GrMockBuffer.h 26 fMapPtr = sk_malloc_throw(this->sizeInBytes());
29 void onUnmap() override { sk_free(fMapPtr); }
  /external/skqp/src/gpu/mock/
GrMockBuffer.h 26 fMapPtr = sk_malloc_throw(this->sizeInBytes());
29 void onUnmap() override { sk_free(fMapPtr); }
  /external/skia/src/gpu/vk/
GrVkBuffer.cpp 117 delete[] (unsigned char*)fMapPtr;
119 fMapPtr = nullptr;
127 delete[] (unsigned char*)fMapPtr;
129 fMapPtr = nullptr;
160 SkASSERT(fMapPtr);
190 size, 0, &fMapPtr));
192 fMapPtr = nullptr;
196 if (!fMapPtr) {
197 fMapPtr = new unsigned char[this->size()];
217 fMapPtr = nullptr
    [all...]
GrVkBuffer.h 26 delete [] (unsigned char*)fMapPtr;
85 : fDesc(desc), fResource(resource), fOffset(0), fMapPtr(nullptr), fMappedSize(0) {
90 return fMapPtr;
117 void* fMapPtr;
GrVkTransferBuffer.h 33 this->GrBuffer::fMapPtr = this->vkMap(this->getVkGpu());
GrVkIndexBuffer.cpp 53 this->GrBuffer::fMapPtr = this->vkMap(this->getVkGpu());
GrVkTexelBuffer.cpp 52 this->GrBuffer::fMapPtr = this->vkMap(this->getVkGpu());
GrVkVertexBuffer.cpp 52 this->GrBuffer::fMapPtr = this->vkMap(this->getVkGpu());
  /external/skqp/src/gpu/vk/
GrVkBuffer.cpp 117 delete[] (unsigned char*)fMapPtr;
119 fMapPtr = nullptr;
127 delete[] (unsigned char*)fMapPtr;
129 fMapPtr = nullptr;
160 SkASSERT(fMapPtr);
190 size, 0, &fMapPtr));
192 fMapPtr = nullptr;
196 if (!fMapPtr) {
197 fMapPtr = new unsigned char[this->size()];
217 fMapPtr = nullptr
    [all...]
GrVkBuffer.h 26 delete [] (unsigned char*)fMapPtr;
85 : fDesc(desc), fResource(resource), fOffset(0), fMapPtr(nullptr), fMappedSize(0) {
90 return fMapPtr;
117 void* fMapPtr;
GrVkTransferBuffer.h 33 this->GrBuffer::fMapPtr = this->vkMap(this->getVkGpu());
GrVkIndexBuffer.cpp 53 this->GrBuffer::fMapPtr = this->vkMap(this->getVkGpu());
GrVkTexelBuffer.cpp 52 this->GrBuffer::fMapPtr = this->vkMap(this->getVkGpu());
GrVkVertexBuffer.cpp 52 this->GrBuffer::fMapPtr = this->vkMap(this->getVkGpu());
  /external/skia/src/gpu/gl/
GrGLBuffer.cpp 144 fMapPtr = nullptr;
154 fMapPtr = nullptr;
181 GL_CALL_RET(fMapPtr, MapBuffer(target, readOnly ? GR_GL_READ_ONLY : GR_GL_WRITE_ONLY));
195 GL_CALL_RET(fMapPtr, MapBufferRange(target, 0, this->sizeInBytes(),
205 GL_CALL_RET(fMapPtr, MapBufferSubData(target, 0, this->sizeInBytes(),
223 fMapPtr = nullptr;
239 GL_CALL(UnmapBufferSubData(fMapPtr));
242 fMapPtr = nullptr;
298 SkASSERT(nullptr == fMapPtr || fGLSizeInBytes <= this->sizeInBytes());
  /external/skqp/src/gpu/gl/
GrGLBuffer.cpp 144 fMapPtr = nullptr;
154 fMapPtr = nullptr;
181 GL_CALL_RET(fMapPtr, MapBuffer(target, readOnly ? GR_GL_READ_ONLY : GR_GL_WRITE_ONLY));
195 GL_CALL_RET(fMapPtr, MapBufferRange(target, 0, this->sizeInBytes(),
205 GL_CALL_RET(fMapPtr, MapBufferSubData(target, 0, this->sizeInBytes(),
223 fMapPtr = nullptr;
239 GL_CALL(UnmapBufferSubData(fMapPtr));
242 fMapPtr = nullptr;
298 SkASSERT(nullptr == fMapPtr || fGLSizeInBytes <= this->sizeInBytes());

Completed in 2533 milliseconds