Lines Matching refs:fMapPtr
22 , fMapPtr(nullptr) { in GrGLBufferImpl()
49 fMapPtr = nullptr; in release()
56 fMapPtr = nullptr; in abandon()
66 fMapPtr = fCPUData; in map()
68 fMapPtr = gpu->mapBuffer(fDesc.fID, fBufferType, fDesc.fUsage, fGLSizeInBytes, in map()
73 return fMapPtr; in map()
80 gpu->unmapBuffer(fDesc.fID, fBufferType, fMapPtr); in unmap()
82 fMapPtr = nullptr; in unmap()
87 return SkToBool(fMapPtr); in isMapped()
120 SkASSERT(nullptr == fMapPtr || fCPUData || fGLSizeInBytes <= fDesc.fSizeInBytes); in validate()
121 SkASSERT(nullptr == fCPUData || nullptr == fMapPtr || fCPUData == fMapPtr); in validate()