summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_opengl/utils.h
blob: 6c2b45546611ac4c136bdb945e968618849747fd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
// Copyright 2014 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#pragma once

#include <string_view>
#include <vector>
#include <glad/glad.h>
#include "common/common_types.h"

namespace OpenGL {

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;
};

class BindBuffersRangePushBuffer final {
public:
    explicit BindBuffersRangePushBuffer(GLenum target);
    ~BindBuffersRangePushBuffer();

    void Setup(GLuint first_);

    void Push(const GLuint* buffer, GLintptr offset, GLsizeiptr size);

    void Bind();

private:
    GLenum target{};
    GLuint first{};
    std::vector<const GLuint*> buffer_pointers;

    std::vector<GLuint> buffers;
    std::vector<GLintptr> offsets;
    std::vector<GLsizeiptr> sizes;
};

void LabelGLObject(GLenum identifier, GLuint handle, VAddr addr, std::string_view extra_info = {});

} // namespace OpenGL