mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 19:58:53 +00:00
VideoBackends: Add AbstractShader and AbstractPipeline classes
This commit is contained in:
parent
31111ef143
commit
fec6bb4d56
47 changed files with 1825 additions and 33 deletions
|
@ -61,6 +61,16 @@ void VertexManager::DestroyDeviceObjects()
|
|||
s_indexBuffer.reset();
|
||||
}
|
||||
|
||||
StreamBuffer* VertexManager::GetVertexBuffer() const
|
||||
{
|
||||
return s_vertexBuffer.get();
|
||||
}
|
||||
|
||||
OGL::StreamBuffer* VertexManager::GetIndexBuffer() const
|
||||
{
|
||||
return s_indexBuffer.get();
|
||||
}
|
||||
|
||||
GLuint VertexManager::GetVertexBufferHandle() const
|
||||
{
|
||||
return m_vertex_buffers;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue