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