2014-02-10 11:54:46 -07:00
|
|
|
#pragma once
|
2010-11-17 19:21:26 -07:00
|
|
|
|
2014-03-12 13:33:41 -06:00
|
|
|
#include <string>
|
2014-02-17 03:18:15 -07:00
|
|
|
#include "VideoCommon/RenderBase.h"
|
2010-11-17 19:21:26 -07:00
|
|
|
|
|
|
|
namespace OGL
|
|
|
|
{
|
|
|
|
|
2011-08-21 22:15:02 -06:00
|
|
|
void ClearEFBCache();
|
|
|
|
|
2014-08-15 12:09:53 -06:00
|
|
|
enum GLSL_VERSION
|
|
|
|
{
|
2013-04-08 06:50:58 -06:00
|
|
|
GLSL_130,
|
2013-07-22 04:02:16 -06:00
|
|
|
GLSL_140,
|
2014-03-30 12:58:05 -06:00
|
|
|
GLSL_150, // and above
|
|
|
|
GLSLES_300, // GLES 3.0
|
|
|
|
GLSLES_310, // GLES 3.1
|
2013-04-08 06:50:58 -06:00
|
|
|
};
|
|
|
|
|
2013-03-25 08:14:24 -06:00
|
|
|
// ogl-only config, so not in VideoConfig.h
|
2014-08-15 12:09:53 -06:00
|
|
|
struct VideoConfig
|
|
|
|
{
|
2013-03-25 08:14:24 -06:00
|
|
|
bool bSupportsGLSLCache;
|
|
|
|
bool bSupportsGLPinnedMemory;
|
|
|
|
bool bSupportsGLSync;
|
|
|
|
bool bSupportsGLBaseVertex;
|
2013-12-27 09:56:03 -07:00
|
|
|
bool bSupportsGLBufferStorage;
|
2014-04-30 10:48:40 -06:00
|
|
|
bool bSupportsMSAA;
|
2013-03-25 08:45:10 -06:00
|
|
|
bool bSupportSampleShading;
|
2013-04-08 06:50:58 -06:00
|
|
|
GLSL_VERSION eSupportedGLSLVersion;
|
2013-04-10 04:58:52 -06:00
|
|
|
bool bSupportOGL31;
|
2013-10-29 08:29:06 -06:00
|
|
|
bool bSupportViewportFloat;
|
2013-10-28 23:23:17 -06:00
|
|
|
|
2014-03-12 13:33:41 -06:00
|
|
|
const char* gl_vendor;
|
|
|
|
const char* gl_renderer;
|
2013-03-25 08:14:24 -06:00
|
|
|
const char* gl_version;
|
2013-04-08 06:50:58 -06:00
|
|
|
const char* glsl_version;
|
2013-10-28 23:23:17 -06:00
|
|
|
|
2013-03-25 08:14:24 -06:00
|
|
|
s32 max_samples;
|
2014-07-08 08:49:33 -06:00
|
|
|
};
|
|
|
|
extern VideoConfig g_ogl_config;
|
2013-03-25 08:14:24 -06:00
|
|
|
|
2010-11-17 19:21:26 -07:00
|
|
|
class Renderer : public ::Renderer
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Renderer();
|
|
|
|
~Renderer();
|
2013-10-28 23:23:17 -06:00
|
|
|
|
2013-01-25 12:39:19 -07:00
|
|
|
static void Init();
|
|
|
|
static void Shutdown();
|
2010-11-17 19:21:26 -07:00
|
|
|
|
2013-10-28 23:34:26 -06:00
|
|
|
void SetColorMask() override;
|
|
|
|
void SetBlendMode(bool forceUpdate) override;
|
2014-02-04 13:17:38 -07:00
|
|
|
void SetScissorRect(const EFBRectangle& rc) override;
|
2013-10-28 23:34:26 -06:00
|
|
|
void SetGenerationMode() override;
|
|
|
|
void SetDepthMode() override;
|
|
|
|
void SetLogicOpMode() override;
|
|
|
|
void SetDitherMode() override;
|
|
|
|
void SetLineWidth() override;
|
|
|
|
void SetSamplerState(int stage,int texindex) override;
|
|
|
|
void SetInterlacingMode() override;
|
2014-02-04 02:45:38 -07:00
|
|
|
void SetViewport() override;
|
2010-11-17 19:21:26 -07:00
|
|
|
|
2012-03-29 17:56:24 -06:00
|
|
|
// TODO: Implement and use these
|
2013-10-28 23:34:26 -06:00
|
|
|
void ApplyState(bool bUseDstAlpha) override {}
|
|
|
|
void RestoreState() override {}
|
2011-01-24 01:44:32 -07:00
|
|
|
|
2014-03-12 13:33:41 -06:00
|
|
|
void RenderText(const std::string& text, int left, int top, u32 color) override;
|
2010-11-17 19:21:26 -07:00
|
|
|
void DrawDebugInfo();
|
2013-11-14 17:00:38 -07:00
|
|
|
void FlipImageData(u8 *data, int w, int h, int pixel_width = 3);
|
2010-11-17 19:21:26 -07:00
|
|
|
|
2013-10-28 23:34:26 -06:00
|
|
|
u32 AccessEFB(EFBAccessType type, u32 x, u32 y, u32 poke_data) override;
|
2010-11-17 19:21:26 -07:00
|
|
|
|
2013-10-28 23:34:26 -06:00
|
|
|
void ResetAPIState() override;
|
|
|
|
void RestoreAPIState() override;
|
2010-11-17 19:21:26 -07:00
|
|
|
|
2013-10-28 23:34:26 -06:00
|
|
|
TargetRectangle ConvertEFBRectangle(const EFBRectangle& rc) override;
|
2010-11-17 19:21:26 -07:00
|
|
|
|
2014-05-02 01:08:44 -06:00
|
|
|
void SwapImpl(u32 xfbAddr, u32 fbWidth, u32 fbStride, u32 fbHeight, const EFBRectangle& rc, float Gamma) override;
|
2010-11-17 19:21:26 -07:00
|
|
|
|
2013-10-28 23:34:26 -06:00
|
|
|
void ClearScreen(const EFBRectangle& rc, bool colorEnable, bool alphaEnable, bool zEnable, u32 color, u32 z) override;
|
2010-11-17 19:21:26 -07:00
|
|
|
|
2013-10-28 23:34:26 -06:00
|
|
|
void ReinterpretPixelData(unsigned int convtype) override;
|
2010-12-27 14:56:20 -07:00
|
|
|
|
2014-03-07 17:54:44 -07:00
|
|
|
bool SaveScreenshot(const std::string &filename, const TargetRectangle &rc) override;
|
2011-01-06 21:57:59 -07:00
|
|
|
|
2011-08-21 22:15:02 -06:00
|
|
|
private:
|
|
|
|
void UpdateEFBCache(EFBAccessType type, u32 cacheRectIdx, const EFBRectangle& efbPixelRc, const TargetRectangle& targetPixelRc, const u32* data);
|
2010-11-17 19:21:26 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|