Skip to content

Commit

Permalink
Force a GBM BO to be used
Browse files Browse the repository at this point in the history
  • Loading branch information
garbear committed Jul 19, 2023
1 parent d49ae8d commit cd43e13
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 cd43e13

Please sign in to comment.