Skip to content

Commit

Permalink
[WIP] utils: 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 Dec 6, 2023
1 parent 24f6243 commit 79df721
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 79df721

Please sign in to comment.