Home
last modified time | relevance | path

Searched refs:srcFormatSize (Results 1 – 2 of 2) sorted by relevance

/external/angle/src/libANGLE/renderer/vulkan/
DVertexArrayVk.cpp136 size_t GetVertexCount(BufferVk *srcBuffer, const gl::VertexBinding &binding, uint32_t srcFormatSize) in GetVertexCount() argument
140 if (bytes < srcFormatSize) in GetVertexCount()
146 bytes -= srcFormatSize; in GetVertexCount()
420 unsigned srcFormatSize = srcFormat.pixelBytes; in convertVertexBufferGPU() local
423 size_t numVertices = GetVertexCount(srcBuffer, binding, srcFormatSize); in convertVertexBufferGPU()
465 unsigned srcFormatSize = vertexFormat.getIntendedFormat().pixelBytes; in convertVertexBufferCPU() local
468 size_t numVertices = GetVertexCount(srcBuffer, binding, srcFormatSize); in convertVertexBufferCPU()
/external/angle/src/libANGLE/renderer/metal/
DVertexArrayMtl.mm133 uint32_t srcFormatSize)
137 if (bytes < srcFormatSize)
142 bytes -= srcFormatSize;
154 uint32_t srcFormatSize)
159 if (bytes < srcFormatSize)
164 bytes -= srcFormatSize;
957 unsigned srcFormatSize = srcVertexFormat.intendedAngleFormat().pixelBytes;
959 size_t numVertices = GetVertexCount(srcBuffer, binding, srcFormatSize);
998 srcBuffer, static_cast<VertexConversionBufferMtl *>(conversion), binding, srcFormatSize);