[host] remove the depth buffer, it's unused

This commit is contained in:
Geoffrey McRae
2018-07-28 02:30:02 +10:00
parent 2019766989
commit 3799929f59
3 changed files with 5 additions and 27 deletions

View File

@@ -639,9 +639,10 @@ GrabStatus DXGI::GrabFrame(struct FrameInfo & frame, struct CursorInfo & cursor)
frame.height = m_height;
switch (m_frameType)
{
case FRAME_TYPE_ARGB: return GrabFrameRaw (frame, cursor);
{
case FRAME_TYPE_NV12: return GrabFrameNV12(frame, cursor);
case FRAME_TYPE_H264: return GrabFrameH264(frame, cursor);
}
return GrabFrameRaw(frame, cursor);
}