Home
last modified time | relevance | path

Searched refs:bufferGL (Results 1 – 6 of 6) sorted by relevance

/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/
DTransformFeedbackGL.cpp85 const BufferGL *bufferGL = GetImplAs<BufferGL>(binding.get()); in bindIndexedBuffer() local
91 bufferGL->getBufferID())); in bindIndexedBuffer()
99 bufferGL->getBufferID(), binding.getOffset(), binding.getSize())); in bindIndexedBuffer()
105 bufferGL->getBufferID())); in bindIndexedBuffer()
DStateManagerGL.cpp775 const BufferGL *bufferGL = GetImplAs<BufferGL>(drawIndirectBuffer); in updateDrawIndirectBufferBinding() local
776 bindBuffer(gl::BufferBinding::DrawIndirect, bufferGL->getBufferID()); in updateDrawIndirectBufferBinding()
786 const BufferGL *bufferGL = GetImplAs<BufferGL>(dispatchIndirectBuffer); in updateDispatchIndirectBufferBinding() local
787 bindBuffer(gl::BufferBinding::DispatchIndirect, bufferGL->getBufferID()); in updateDispatchIndirectBufferBinding()
960 BufferGL *bufferGL = GetImplAs<BufferGL>(shaderStorageBuffer.get()); in updateProgramStorageBufferBindings() local
964 bindBufferBase(gl::BufferBinding::ShaderStorage, binding, bufferGL->getBufferID()); in updateProgramStorageBufferBindings()
968 bindBufferRange(gl::BufferBinding::ShaderStorage, binding, bufferGL->getBufferID(), in updateProgramStorageBufferBindings()
989 BufferGL *bufferGL = GetImplAs<BufferGL>(uniformBuffer.get()); in updateProgramUniformBufferBindings() local
993 bindBufferBase(gl::BufferBinding::Uniform, binding, bufferGL->getBufferID()); in updateProgramUniformBufferBindings()
997 bindBufferRange(gl::BufferBinding::Uniform, binding, bufferGL->getBufferID(), in updateProgramUniformBufferBindings()
[all …]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
DVertexArrayVk.cpp477 gl::Buffer *bufferGL = mState.getElementArrayBuffer(); in syncState() local
478 if (bufferGL && bufferGL->getSize() > 0) in syncState()
482 BufferVk *bufferVk = vk::GetImpl(bufferGL); in syncState()
592 gl::Buffer *bufferGL = binding.getBuffer().get(); in syncDirtyAttrib() local
595 (binding.getDivisor() > renderer->getMaxVertexAttribDivisor()) || (bufferGL == nullptr); in syncDirtyAttrib()
599 if (bufferGL) in syncDirtyAttrib()
601 mContentsObservers->disableForBuffer(bufferGL, static_cast<uint32_t>(attribIndex)); in syncDirtyAttrib()
604 if (!isStreamingVertexAttrib && bufferGL->getSize() > 0) in syncDirtyAttrib()
606 BufferVk *bufferVk = vk::GetImpl(bufferGL); in syncDirtyAttrib()
612 gl::IsStaticBufferUsage(bufferGL->getUsage()) && in syncDirtyAttrib()
[all …]
DContextVk.cpp323 const gl::Buffer *bufferGL = binding.get(); in AppendBufferVectorToDesc() local
325 if (!bufferGL) in AppendBufferVectorToDesc()
331 BufferVk *bufferVk = vk::GetImpl(bufferGL); in AppendBufferVectorToDesc()
348 GLint64 size = binding.getSize() == 0 ? bufferGL->getSize() : binding.getSize(); in AppendBufferVectorToDesc()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/metal/
DVertexArrayMtl.mm634 gl::Buffer *bufferGL = binding.getBuffer().get();
637 if (bufferGL)
639 BufferMtl *bufferMtl = mtl::GetImpl(bufferGL);
649 mContentsObservers->enableForBuffer(bufferGL, static_cast<uint32_t>(attribIndex));
654 mContentsObservers->disableForBuffer(bufferGL, static_cast<uint32_t>(attribIndex));
/third_party/vk-gl-cts/modules/gles31/functional/
Des31fShaderImageLoadStoreTests.cpp1040 deUint32 bufferGL, in readBufferTextureWithMappingAndVerify() argument
1050 glLog.glBindBuffer(GL_TEXTURE_BUFFER, bufferGL); in readBufferTextureWithMappingAndVerify()
1064 deUint32 bufferGL, in readTextureAndVerify() argument
1071 …return readBufferTextureWithMappingAndVerify(renderCtx, glLog, bufferGL, textureFormat, imageSize.… in readTextureAndVerify()