Skip to content

Commit

Permalink
[WIP] Force a GBM BO to be used
Browse files Browse the repository at this point in the history
It would be preferable to change the registration order instead.

Also, we will still need a buffer import check for the input stream stuff
as that needs to use DMA heaps.
  • Loading branch information
garbear committed Jul 24, 2023
1 parent 9cd6afb commit c2fb8de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/utils/BufferObjectFactory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ std::unique_ptr<CBufferObject> CBufferObjectFactory::CreateBufferObject(bool nee
void CBufferObjectFactory::RegisterBufferObject(
const std::function<std::unique_ptr<CBufferObject>()>& createFunc)
{
m_bufferObjects.emplace_front(createFunc);
m_bufferObjects.emplace_back(createFunc);
}

void CBufferObjectFactory::ClearBufferObjects()
Expand Down

0 comments on commit c2fb8de

Please sign in to comment.