2018-10-29 00:54:08 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2019-05-25 03:32:01 +00:00
|
|
|
#include <string_view>
|
2019-04-05 21:31:24 +00:00
|
|
|
#include <vector>
|
2018-10-29 00:54:08 +00:00
|
|
|
#include <glad/glad.h>
|
|
|
|
#include "common/common_types.h"
|
|
|
|
|
|
|
|
namespace OpenGL {
|
|
|
|
|
2019-06-20 06:44:06 +00:00
|
|
|
class VertexArrayPushBuffer final {
|
|
|
|
public:
|
|
|
|
explicit VertexArrayPushBuffer();
|
|
|
|
~VertexArrayPushBuffer();
|
|
|
|
|
|
|
|
void Setup(GLuint vao_);
|
|
|
|
|
|
|
|
void SetIndexBuffer(const GLuint* buffer);
|
|
|
|
|
|
|
|
void SetVertexBuffer(GLuint binding_index, const GLuint* buffer, GLintptr offset,
|
|
|
|
GLsizei stride);
|
|
|
|
|
|
|
|
void Bind();
|
|
|
|
|
|
|
|
private:
|
|
|
|
struct Entry {
|
|
|
|
GLuint binding_index{};
|
|
|
|
const GLuint* buffer{};
|
|
|
|
GLintptr offset{};
|
|
|
|
GLsizei stride{};
|
|
|
|
};
|
|
|
|
|
|
|
|
GLuint vao{};
|
|
|
|
const GLuint* index_buffer{};
|
|
|
|
std::vector<Entry> vertex_buffers;
|
|
|
|
};
|
|
|
|
|
2019-06-20 06:22:25 +00:00
|
|
|
class BindBuffersRangePushBuffer final {
|
2019-04-05 21:31:24 +00:00
|
|
|
public:
|
2019-06-20 06:22:25 +00:00
|
|
|
explicit BindBuffersRangePushBuffer(GLenum target);
|
2019-04-05 21:31:24 +00:00
|
|
|
~BindBuffersRangePushBuffer();
|
|
|
|
|
2019-11-19 00:38:15 +00:00
|
|
|
void Setup();
|
2019-04-05 21:31:24 +00:00
|
|
|
|
2019-11-19 00:38:15 +00:00
|
|
|
void Push(GLuint binding, const GLuint* buffer, GLintptr offset, GLsizeiptr size);
|
2019-04-05 21:31:24 +00:00
|
|
|
|
2019-06-20 06:22:25 +00:00
|
|
|
void Bind();
|
2019-04-05 21:31:24 +00:00
|
|
|
|
|
|
|
private:
|
2019-11-19 00:38:15 +00:00
|
|
|
struct Entry {
|
|
|
|
GLuint binding;
|
|
|
|
const GLuint* buffer;
|
|
|
|
GLintptr offset;
|
|
|
|
GLsizeiptr size;
|
|
|
|
};
|
2019-06-20 06:22:25 +00:00
|
|
|
|
2019-11-19 00:38:15 +00:00
|
|
|
GLenum target;
|
|
|
|
std::vector<Entry> entries;
|
2019-04-05 21:31:24 +00:00
|
|
|
};
|
|
|
|
|
2019-05-25 03:32:01 +00:00
|
|
|
void LabelGLObject(GLenum identifier, GLuint handle, VAddr addr, std::string_view extra_info = {});
|
2018-10-29 00:54:08 +00:00
|
|
|
|
2019-05-07 14:57:16 +00:00
|
|
|
} // namespace OpenGL
|