mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-10 18:18:49 +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
|
@ -14,6 +14,7 @@
|
|||
|
||||
namespace OGL
|
||||
{
|
||||
class StreamBuffer;
|
||||
class GLVertexFormat : public NativeVertexFormat
|
||||
{
|
||||
public:
|
||||
|
@ -37,6 +38,8 @@ public:
|
|||
void CreateDeviceObjects() override;
|
||||
void DestroyDeviceObjects() override;
|
||||
|
||||
StreamBuffer* GetVertexBuffer() const;
|
||||
StreamBuffer* GetIndexBuffer() const;
|
||||
GLuint GetVertexBufferHandle() const;
|
||||
GLuint GetIndexBufferHandle() const;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue