Files
dolphin/Source/Core/VideoBackends/OGL/StreamBuffer.h
T

67 lines
1.5 KiB
C++
Raw Normal View History

// Copyright 2013 Dolphin Emulator Project
// Licensed under GPLv2
// Refer to the license.txt file included.
2013-01-31 23:11:53 +01:00
#pragma once
2013-01-31 23:11:53 +01:00
2014-01-23 00:47:49 +01:00
#include <utility>
2014-02-17 05:18:15 -05:00
#include "VideoBackends/OGL/FramebufferManager.h"
#include "VideoBackends/OGL/GLUtil.h"
#include "VideoCommon/VideoCommon.h"
2013-01-31 23:11:53 +01:00
namespace OGL
{
2014-08-15 14:09:53 -04:00
class StreamBuffer
{
2013-01-31 23:11:53 +01:00
public:
2014-06-05 11:51:05 +02:00
static StreamBuffer* Create(u32 type, u32 size);
2014-01-23 00:47:49 +01:00
virtual ~StreamBuffer();
/* This mapping function will return a pair of:
* - the pointer to the mapped buffer
2015-01-11 00:17:29 -05:00
* - the offset into the real GPU buffer (always multiple of stride)
2014-01-23 00:47:49 +01: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 11:51:05 +02:00
virtual std::pair<u8*, u32> Map(u32 size) = 0;
virtual void Unmap(u32 used_size) = 0;
2014-01-23 00:47:49 +01:00
2014-06-05 11:51:05 +02:00
inline std::pair<u8*, u32> Map(u32 size, u32 stride)
2014-06-05 11:25:57 +02:00
{
u32 padding = m_iterator % stride;
if (padding)
{
m_iterator += stride - padding;
}
return Map(size);
2014-08-15 14:09:53 -04:00
}
2014-06-05 11:25:57 +02:00
2014-01-23 00:47:49 +01:00
const u32 m_buffer;
protected:
2014-06-05 11:51:05 +02:00
StreamBuffer(u32 type, u32 size);
2014-01-23 00:47:49 +01:00
void CreateFences();
2013-08-29 21:03:48 +02:00
void DeleteFences();
2014-06-05 11:51:05 +02:00
void AllocMemory(u32 size);
2014-01-23 00:47:49 +01:00
const u32 m_buffertype;
2014-06-05 11:51:05 +02:00
const u32 m_size;
2014-06-05 11:51:05 +02:00
u32 m_iterator;
u32 m_used_iterator;
u32 m_free_iterator;
2014-01-23 00:47:49 +01:00
private:
static const int SYNC_POINTS = 16;
2014-06-05 11:51:05 +02:00
inline int SLOT(u32 x) const { return x >> m_bit_per_slot; }
const int m_bit_per_slot;
GLsync fences[SYNC_POINTS];
2013-01-31 23:11:53 +01:00
};
}