Merge pull request #366 from Jezze/vertex

OGL/VertexManager: Remove unused variable.
This commit is contained in:
Tony Wasserka 2014-05-16 16:18:14 +02:00
commit b8817267f4
2 changed files with 0 additions and 2 deletions

View File

@ -59,7 +59,6 @@ void VertexManager::CreateDeviceObjects()
s_indexBuffer = StreamBuffer::Create(GL_ELEMENT_ARRAY_BUFFER, MAX_IBUFFER_SIZE);
m_index_buffers = s_indexBuffer->m_buffer;
m_CurrentVertexFmt = nullptr;
m_last_vao = 0;
}

View File

@ -44,7 +44,6 @@ private:
void Draw(u32 stride);
void vFlush(bool useDstAlpha) override;
void PrepareDrawBuffers(u32 stride);
NativeVertexFormat *m_CurrentVertexFmt;
};
}