mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-04 15:19:09 +00:00
Vulkan: Call VertexManagerBase initialize
This commit is contained in:
parent
07c43b192f
commit
e05bc33899
1 changed files with 3 additions and 0 deletions
|
@ -59,6 +59,9 @@ VertexManager::~VertexManager()
|
||||||
|
|
||||||
bool VertexManager::Initialize()
|
bool VertexManager::Initialize()
|
||||||
{
|
{
|
||||||
|
if (!VertexManagerBase::Initialize())
|
||||||
|
return false;
|
||||||
|
|
||||||
m_vertex_stream_buffer =
|
m_vertex_stream_buffer =
|
||||||
StreamBuffer::Create(VK_BUFFER_USAGE_VERTEX_BUFFER_BIT, VERTEX_STREAM_BUFFER_SIZE);
|
StreamBuffer::Create(VK_BUFFER_USAGE_VERTEX_BUFFER_BIT, VERTEX_STREAM_BUFFER_SIZE);
|
||||||
m_index_stream_buffer =
|
m_index_stream_buffer =
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue