summaryrefslogblamecommitdiffstats
path: root/src/video_core/renderer_opengl/utils.h
blob: 3ad7c02d4b896c6e9ac8781b4ca352c135dee0a3 (plain) (tree)
1
2
3
4
5
6
7
8





                                            
                      
                 




                                














                                                                                     
                 





                                      
                                        
       
                                                       

                                  
                 
 
                                                                                      
 
                

        
                 
 

                               

  
                                                                                                   
 
                     
// 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 vao{};
    const GLuint* index_buffer{};
    std::vector<Entry> vertex_buffers;
};

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

    void Setup();

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

    void Bind();

private:
    struct Entry;

    GLenum target;
    std::vector<Entry> entries;
};

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

} // namespace OpenGL