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



                                            

            

                  
                      
 


                                                           

                  
             
                   
 

                                             
                                                                                 
                       
 



                                                                                           
                                                                                            

                                                                     
                                                                          
 
                                
 



                                




                                      
                           

     
        



                                                                
                        
 
                                
                            

                               
  

                     
// Copyright 2018 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#pragma once

#include <utility>

#include <glad/glad.h>

#include "common/common_types.h"
#include "video_core/renderer_opengl/gl_resource_manager.h"

namespace OpenGL {

class Device;
class StateTracker;

class OGLStreamBuffer : private NonCopyable {
public:
    explicit OGLStreamBuffer(const Device& device, StateTracker& state_tracker_);
    ~OGLStreamBuffer();

    /*
     * Allocates a linear chunk of memory in the GPU buffer with at least "size" bytes
     * and the optional alignment requirement.
     * If the buffer is full, the whole buffer is reallocated which invalidates old chunks.
     * The return values are the pointer to the new chunk, and the offset within the buffer.
     * The actual used size must be specified on unmapping the chunk.
     */
    std::pair<u8*, GLintptr> Map(GLsizeiptr size, GLintptr alignment = 0);

    void Unmap(GLsizeiptr size);

    GLuint Handle() const {
        return gl_buffer.handle;
    }

    u64 Address() const {
        return gpu_address;
    }

    GLsizeiptr Size() const noexcept {
        return BUFFER_SIZE;
    }

private:
    static constexpr GLsizeiptr BUFFER_SIZE = 256 * 1024 * 1024;

    StateTracker& state_tracker;

    OGLBuffer gl_buffer;

    GLuint64EXT gpu_address = 0;
    GLintptr buffer_pos = 0;
    GLsizeiptr mapped_size = 0;
    u8* mapped_ptr = nullptr;
};

} // namespace OpenGL