Home
last modified time | relevance | path

Searched refs:isMapped (Results 1 - 25 of 35) sorted by relevance

12

/third_party/skia/src/gpu/
H A DGrBufferAllocPool.cpp98 if (!buffer->isCpuBuffer() && static_cast<GrGpuBuffer*>(buffer)->isMapped()) { in deleteBlocks()
128 if (static_cast<GrGpuBuffer*>(buffer)->isMapped()) { in unmap()
146 if (!buffer->isCpuBuffer() && !static_cast<const GrGpuBuffer*>(buffer)->isMapped()) { in validate()
151 SkASSERT(buffer->isCpuBuffer() || !static_cast<const GrGpuBuffer*>(buffer)->isMapped()); in validate()
156 SkASSERT(buffer->isCpuBuffer() || !static_cast<const GrGpuBuffer*>(buffer)->isMapped()); in validate()
298 if (!buffer->isCpuBuffer() && static_cast<GrGpuBuffer*>(buffer)->isMapped()) { in putBack()
332 if (static_cast<GrGpuBuffer*>(buffer)->isMapped()) { in createBlock()
368 !static_cast<GrGpuBuffer*>(fBlocks.back().fBuffer.get())->isMapped()); in destroyBlock()
391 SkASSERT(!buffer->isMapped()); in flushCpuData()
H A DGrGpuBuffer.cpp43 bool GrGpuBuffer::isMapped() const { return SkToBool(fMapPtr); } in isMapped() function in GrGpuBuffer
47 SkASSERT(!this->isMapped()); in updateData()
H A DGrGpuBuffer.h61 bool isMapped() const;
H A DGrOpsRenderPass.cpp277 !static_cast<const GrGpuBuffer*>(drawIndirectBuffer)->isMapped()); in drawIndirect()
303 !static_cast<const GrGpuBuffer*>(drawIndirectBuffer)->isMapped()); in drawIndexedIndirect()
H A DGrResourceProvider.cpp449 SkASSERT(!buffer->isMapped()); in findOrMakeStaticBuffer()
455 if (buffer->isMapped()) { in findOrMakeStaticBuffer()
H A DSurfaceContext.cpp638 SkASSERT(!result.fTransferBuffer->isMapped()); in addTransferResult()
667 SkASSERT(mappedBuffer->isMapped()); in addMappedPlane()
695 SkASSERT(fMappedBuffer->isMapped()); in data()
/third_party/skia/experimental/graphite/src/
H A DBuffer.cpp13 if (!this->isMapped()) { in map()
20 SkASSERT(this->isMapped()); in unmap()
H A DBuffer.h23 bool isMapped() const { return fMapPtr; } in isMapped() function in skgpu::Buffer
/third_party/skia/src/gpu/dawn/
H A DGrDawnBuffer.cpp74 SkASSERT(this->isMapped()); in onMap()
117 SkASSERT(!this->isMapped()); in mapWriteAsync()
121 SkASSERT(!this->isMapped()); in mapReadAsync()
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A DVertexArray.cpp89 bool isMapped = newBinding.getBuffer().get() && newBinding.getBuffer()->isMapped();
90 mCachedMappedArrayBuffers.set(attribIndex, isMapped);
272 bool isMapped,
277 if (isMapped)
303 bool isMapped = buffer && buffer->isMapped();
306 return updateCachedArrayBuffersMasks(isMapped, isImmutable, isPersistent,
369 bool isMapped = boundBuffer->isMapped() in bindVertexBufferImpl() local
[all...]
H A DBuffer.h43 GLboolean isMapped() const { return mMapped; } in isMapped() function in gl::final
142 GLboolean isMapped() const { return mState.mMapped; } in isMapped() function in gl::final
H A DBuffer.cpp112 if (mState.isMapped()) in bufferDataImpl()
176 if (mState.isMapped()) in bufferExternalDataImpl()
H A DVertexArray.h329 void updateCachedArrayBuffersMasks(bool isMapped,
H A DvalidationES3.cpp807 if (pixelUnpackBuffer->isMapped() && !pixelUnpackBuffer->isPersistentlyMapped()) in ValidateES3TexImageParametersBase()
2947 if (buffer->isMapped()) in ValidateBeginTransformFeedback()
3384 if ((readBuffer->isMapped() && !isReadPersistent) || in ValidateCopyBufferSubData()
3385 (writeBuffer->isMapped() && !isWritePersistent)) in ValidateCopyBufferSubData()
/third_party/skia/src/gpu/d3d/
H A DGrD3DPipelineState.cpp162 SkASSERT(!d3dVertexBuffer->isMapped()); in bindBuffers()
169 SkASSERT(!d3dInstanceBuffer->isMapped()); in bindBuffers()
178 SkASSERT(!d3dIndexBuffer->isMapped()); in bindBuffers()
H A DGrD3DBuffer.cpp179 SkASSERT(!this->isMapped()); in internalMap()
210 SkASSERT(this->isMapped()); in internalUnmap()
/third_party/skia/src/gpu/gl/
H A DGrGLBuffer.cpp171 SkASSERT(!this->isMapped()); in onMap()
238 SkASSERT(this->isMapped()); in onUnmap()
268 SkASSERT(!this->isMapped()); in onUpdateData()
H A DGrGLOpsRenderPass.cpp150 !static_cast<const GrGpuBuffer*>(instanceBuffer)->isMapped()); in bindInstanceBuffer()
169 !static_cast<const GrGpuBuffer*>(vertexBuffer)->isMapped()); in bindVertexBuffer()
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/
H A DBuffer.h45 bool isMapped() const { return mIsMapped; } in isMapped() function in es2::Buffer
H A DlibGLESv3.cpp847 if(!buffer->isMapped()) in UnmapBuffer()
885 *params = buffer->isMapped() ? (void*)(((const char*)buffer->data()) + buffer->offset()) : nullptr; in GetBufferPointerv()
1368 if(buffer->isMapped()) in MapBufferRange()
1422 if(!buffer->isMapped()) in FlushMappedBufferRange()
2439 if(!readBuffer || readBuffer->isMapped() || !writeBuffer || writeBuffer->isMapped()) in CopyBufferSubData()
3084 *params = buffer->isMapped(); in GetBufferParameteri64v()
/third_party/glslang/SPIRV/
H A DSPVRemapper.h198 bool isNewIdMapped(spv::Id newId) const { return isMapped(newId); } in isNewIdMapped()
241 bool isMapped(spv::Id id) const { return id < maxMappedId() && ((mapped[id/mBits] & (1LL<<(id%mBits))) != 0); } in isMapped() function in spv::spirvbin_t
/third_party/skia/src/gpu/vk/
H A DGrVkOpsRenderPass.cpp745 SkASSERT(!gpuVertexBuffer->isMapped()); in onBindBuffers()
750 SkASSERT(!gpuInstanceBuffer->isMapped()); in onBindBuffers()
755 SkASSERT(!gpuIndexBuffer->isMapped()); in onBindBuffers()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/
H A DBuffer11.h85 bool isMapped() const { return mMappedStorage != nullptr; } in isMapped() function in rx::Buffer11
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
H A DSafepointIRVerifier.cpp479 bool isMapped(const BasicBlock *BB) const { in isMapped() function in __anon24223::GCPtrTracker
666 if (!isMapped(InBB) || in removeValidUnrelocatedDefs()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMapping.h620 bool isMapped() const { return Mapped; } in isMapped() function in llvm::coverage::LineCoverageStats

Completed in 33 milliseconds

12