Home
last modified time | relevance | path

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

/hardware/google/gfxstream/host/
DFrameBuffer.h230 int openColorBuffer(HandleType p_colorbuffer);
236 void closeColorBuffer(HandleType p_colorbuffer);
240 void closeBuffer(HandleType p_colorbuffer);
268 void readColorBuffer(HandleType p_colorbuffer, int x, int y, int width, int height,
272 void readColorBuffer(HandleType p_colorbuffer, int x, int y, int width, int height, in readColorBuffer() argument
274 return readColorBuffer(p_colorbuffer, x, y, width, height, format, type, pixels, in readColorBuffer()
286 void readColorBufferYUV(HandleType p_colorbuffer, int x, int y, int width,
309 bool updateColorBuffer(HandleType p_colorbuffer, int x, int y, int width,
312 bool updateColorBufferFromFrameworkFormat(HandleType p_colorbuffer, int x, int y, int width,
316 bool getColorBufferInfo(HandleType p_colorbuffer, int* width, int* height,
[all …]
DFrameBuffer.cpp1276 int FrameBuffer::openColorBuffer(HandleType p_colorbuffer) { in openColorBuffer() argument
1288 c = m_colorbuffers.find(p_colorbuffer); in openColorBuffer()
1291 ERR("FB: openColorBuffer cb handle %d not found", p_colorbuffer); in openColorBuffer()
1300 m_procOwnedColorBuffers[puid].insert(p_colorbuffer); in openColorBuffer()
1305 void FrameBuffer::closeColorBuffer(HandleType p_colorbuffer) { in closeColorBuffer() argument
1321 const auto& cb = ite->second.find(p_colorbuffer); in closeColorBuffer()
1324 if (closeColorBufferLocked(p_colorbuffer)) { in closeColorBuffer()
1325 toCleanup.push_back(p_colorbuffer); in closeColorBuffer()
1330 if (closeColorBufferLocked(p_colorbuffer)) { in closeColorBuffer()
1331 toCleanup.push_back(p_colorbuffer); in closeColorBuffer()
[all …]