2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2013-01-31 22:11:53 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2013-01-31 22:11:53 +00:00
|
|
|
|
2015-12-21 15:06:40 +00:00
|
|
|
#include <array>
|
2015-12-21 15:15:17 +00:00
|
|
|
#include <memory>
|
2014-01-22 23:47:49 +00:00
|
|
|
#include <utility>
|
2015-09-18 16:40:00 +00:00
|
|
|
|
2017-02-01 15:56:13 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
2015-09-18 16:40:00 +00:00
|
|
|
#include "Common/GL/GLUtil.h"
|
|
|
|
|
2013-01-31 22:11:53 +00:00
|
|
|
namespace OGL
|
|
|
|
{
|
2014-08-15 18:09:53 +00:00
|
|
|
class StreamBuffer
|
|
|
|
{
|
2013-01-31 22:11:53 +00:00
|
|
|
public:
|
2015-12-21 15:15:17 +00:00
|
|
|
static std::unique_ptr<StreamBuffer> Create(u32 type, u32 size);
|
2014-01-22 23:47:49 +00:00
|
|
|
virtual ~StreamBuffer();
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2019-02-15 01:59:50 +00:00
|
|
|
u32 GetGLBufferId() const { return m_buffer; }
|
|
|
|
u32 GetSize() const { return m_size; }
|
2018-11-27 07:16:53 +00:00
|
|
|
u32 GetCurrentOffset() const { return m_iterator; }
|
|
|
|
|
2014-01-22 23:47:49 +00:00
|
|
|
/* This mapping function will return a pair of:
|
|
|
|
* - the pointer to the mapped buffer
|
2015-01-11 05:17:29 +00:00
|
|
|
* - the offset into the real GPU buffer (always multiple of stride)
|
2014-01-22 23:47:49 +00:00
|
|
|
* On mapping, the maximum of size for allocation has to be set.
|
|
|
|
* The size really pushed into this fifo only has to be known on Unmapping.
|
|
|
|
* Mapping invalidates the current buffer content,
|
|
|
|
* so it isn't allowed to access the old content any more.
|
|
|
|
*/
|
2014-06-05 09:51:05 +00:00
|
|
|
virtual std::pair<u8*, u32> Map(u32 size) = 0;
|
|
|
|
virtual void Unmap(u32 used_size) = 0;
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2015-12-21 15:04:09 +00:00
|
|
|
std::pair<u8*, u32> Map(u32 size, u32 stride)
|
2014-06-05 09:25:57 +00:00
|
|
|
{
|
|
|
|
u32 padding = m_iterator % stride;
|
|
|
|
if (padding)
|
|
|
|
{
|
|
|
|
m_iterator += stride - padding;
|
|
|
|
}
|
|
|
|
return Map(size);
|
2014-08-15 18:09:53 +00:00
|
|
|
}
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2014-01-22 23:47:49 +00:00
|
|
|
const u32 m_buffer;
|
|
|
|
|
|
|
|
protected:
|
2014-06-05 09:51:05 +00:00
|
|
|
StreamBuffer(u32 type, u32 size);
|
2014-01-22 23:47:49 +00:00
|
|
|
void CreateFences();
|
2013-08-29 19:03:48 +00:00
|
|
|
void DeleteFences();
|
2014-06-05 09:51:05 +00:00
|
|
|
void AllocMemory(u32 size);
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2014-01-22 23:47:49 +00:00
|
|
|
const u32 m_buffertype;
|
2014-06-05 09:51:05 +00:00
|
|
|
const u32 m_size;
|
2014-03-29 10:05:44 +00:00
|
|
|
|
2014-06-05 09:51:05 +00:00
|
|
|
u32 m_iterator;
|
|
|
|
u32 m_used_iterator;
|
|
|
|
u32 m_free_iterator;
|
2014-01-22 23:47:49 +00:00
|
|
|
|
|
|
|
private:
|
2015-12-21 15:06:40 +00:00
|
|
|
static constexpr int SYNC_POINTS = 16;
|
2015-12-21 15:09:03 +00:00
|
|
|
int Slot(u32 x) const { return x >> m_bit_per_slot; }
|
2014-06-05 09:06:41 +00:00
|
|
|
const int m_bit_per_slot;
|
|
|
|
|
2015-12-21 15:06:40 +00:00
|
|
|
std::array<GLsync, SYNC_POINTS> m_fences{};
|
2013-01-31 22:11:53 +00:00
|
|
|
};
|
2019-02-15 01:59:50 +00:00
|
|
|
} // namespace OGL
|