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"
|
2019-04-24 21:47:59 +00:00
|
|
|
#include "common/math_util.h"
|
|
|
|
#include "video_core/renderer_opengl/gl_resource_manager.h"
|
2018-10-29 00:54:08 +00:00
|
|
|
|
|
|
|
namespace OpenGL {
|
|
|
|
|
2019-04-24 21:47:59 +00:00
|
|
|
class CachedSurfaceView;
|
|
|
|
|
2019-04-05 21:31:24 +00:00
|
|
|
class BindBuffersRangePushBuffer {
|
|
|
|
public:
|
|
|
|
BindBuffersRangePushBuffer(GLenum target);
|
|
|
|
~BindBuffersRangePushBuffer();
|
|
|
|
|
|
|
|
void Setup(GLuint first_);
|
|
|
|
|
|
|
|
void Push(GLuint buffer, GLintptr offset, GLsizeiptr size);
|
|
|
|
|
|
|
|
void Bind() const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
GLenum target;
|
|
|
|
GLuint first;
|
|
|
|
std::vector<GLuint> buffers;
|
|
|
|
std::vector<GLintptr> offsets;
|
|
|
|
std::vector<GLsizeiptr> sizes;
|
|
|
|
};
|
|
|
|
|
2019-04-24 21:47:59 +00:00
|
|
|
class SurfaceBlitter {
|
|
|
|
public:
|
|
|
|
explicit SurfaceBlitter();
|
|
|
|
~SurfaceBlitter();
|
|
|
|
|
|
|
|
void Blit(CachedSurfaceView* src, CachedSurfaceView* dst,
|
|
|
|
const Common::Rectangle<u32>& src_rect, const Common::Rectangle<u32>& dst_rect) const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
OGLFramebuffer src_framebuffer;
|
|
|
|
OGLFramebuffer dst_framebuffer;
|
|
|
|
};
|
|
|
|
|
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
|
|
|
|
|
|
|
} // namespace OpenGL
|