Home
last modified time | relevance | path

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

/device/generic/goldfish-opengl/system/OpenglSystemCommon/
DVirtioGpuStream.cpp98 m_cmdPos(0U), in VirtioGpuStream()
211 VirtioGpuCmd *cmd = reinterpret_cast<VirtioGpuCmd *>(&m_buf[m_cmdPos]); in allocBuffer()
216 if (m_cmdPos + cmd->cmdSize + minSize > m_bufSize) { in allocBuffer()
221 m_cmdPos = 0U; in allocBuffer()
227 m_cmdPos += cmd->cmdSize; in allocBuffer()
228 m_flushPos = m_cmdPos; in allocBuffer()
255 m_cmdPos = 0U; in allocBuffer()
259 if (m_flushPos == 0 && m_cmdPos == 0) { in allocBuffer()
266 VirtioGpuCmd *cmd = reinterpret_cast<VirtioGpuCmd *>(&m_buf[m_cmdPos]); in allocBuffer()
270 return m_buf + m_cmdPos; in allocBuffer()
[all …]
DVirtioGpuStream.h103 size_t m_cmdPos; variable