2015-05-24 06:32:32 +02:00
|
|
|
// Copyright 2010 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2014-02-10 13:54:46 -05:00
|
|
|
#pragma once
|
2010-11-14 23:56:26 +00:00
|
|
|
|
2015-12-21 14:11:01 -05:00
|
|
|
#include <memory>
|
2010-11-14 23:56:26 +00:00
|
|
|
|
2016-01-17 16:54:31 -05:00
|
|
|
#include "Common/CommonTypes.h"
|
2010-11-14 23:56:26 +00:00
|
|
|
|
2014-09-20 14:54:59 -04:00
|
|
|
inline bool AddressRangesOverlap(u32 aLower, u32 aUpper, u32 bLower, u32 bUpper)
|
2010-11-14 23:56:26 +00:00
|
|
|
{
|
2016-06-24 10:43:46 +02:00
|
|
|
return !((aLower >= bUpper) || (bLower >= aUpper));
|
2010-11-14 23:56:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
class FramebufferManagerBase
|
|
|
|
{
|
|
|
|
public:
|
2016-06-24 10:43:46 +02:00
|
|
|
virtual ~FramebufferManagerBase();
|
|
|
|
|
|
|
|
static unsigned int GetEFBLayers() { return m_EFBLayers; }
|
2018-04-12 14:18:04 +02:00
|
|
|
|
2010-11-14 23:56:26 +00:00
|
|
|
protected:
|
2016-06-24 10:43:46 +02:00
|
|
|
static unsigned int m_EFBLayers;
|
2010-11-14 23:56:26 +00:00
|
|
|
};
|
|
|
|
|
2015-12-22 18:47:20 -05:00
|
|
|
extern std::unique_ptr<FramebufferManagerBase> g_framebuffer_manager;
|