2015-05-24 06:32:32 +02:00
|
|
|
// Copyright 2008 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-18 02:21:26 +00:00
|
|
|
|
2014-03-12 15:33:41 -04:00
|
|
|
#include <string>
|
2014-02-17 05:18:15 -05:00
|
|
|
#include "VideoCommon/RenderBase.h"
|
2010-11-18 02:21:26 +00:00
|
|
|
|
|
|
|
namespace OGL
|
|
|
|
{
|
|
|
|
|
2011-08-22 06:15:02 +02:00
|
|
|
void ClearEFBCache();
|
|
|
|
|
2014-08-15 14:09:53 -04:00
|
|
|
enum GLSL_VERSION
|
|
|
|
{
|
2013-04-08 14:50:58 +02:00
|
|
|
GLSL_130,
|
2013-07-22 12:02:16 +02:00
|
|
|
GLSL_140,
|
2014-03-30 13:58:05 -05:00
|
|
|
GLSL_150, // and above
|
|
|
|
GLSLES_300, // GLES 3.0
|
|
|
|
GLSLES_310, // GLES 3.1
|
2015-08-26 00:09:32 -05:00
|
|
|
GLSLES_320, // GLES 3.2
|
2013-04-08 14:50:58 +02:00
|
|
|
};
|
|
|
|
|
2013-03-25 15:14:24 +01:00
|
|
|
// ogl-only config, so not in VideoConfig.h
|
2014-08-15 14:09:53 -04:00
|
|
|
struct VideoConfig
|
|
|
|
{
|
2013-03-25 15:14:24 +01:00
|
|
|
bool bSupportsGLSLCache;
|
|
|
|
bool bSupportsGLPinnedMemory;
|
|
|
|
bool bSupportsGLSync;
|
|
|
|
bool bSupportsGLBaseVertex;
|
2013-12-27 10:56:03 -06:00
|
|
|
bool bSupportsGLBufferStorage;
|
2014-04-30 18:48:40 +02:00
|
|
|
bool bSupportsMSAA;
|
2013-03-25 15:45:10 +01:00
|
|
|
bool bSupportSampleShading;
|
2013-04-08 14:50:58 +02:00
|
|
|
GLSL_VERSION eSupportedGLSLVersion;
|
2013-04-10 12:58:52 +02:00
|
|
|
bool bSupportOGL31;
|
2013-10-29 15:29:06 +01:00
|
|
|
bool bSupportViewportFloat;
|
2014-12-07 05:29:36 +00:00
|
|
|
bool bSupportsAEP;
|
2014-12-28 21:46:00 +01:00
|
|
|
bool bSupportsDebug;
|
2015-07-25 12:10:52 +02:00
|
|
|
bool bSupportsCopySubImage;
|
2015-08-26 00:09:32 -05:00
|
|
|
u8 SupportedESPointSize;
|
2013-10-29 01:23:17 -04:00
|
|
|
|
2014-03-12 15:33:41 -04:00
|
|
|
const char* gl_vendor;
|
|
|
|
const char* gl_renderer;
|
2013-03-25 15:14:24 +01:00
|
|
|
const char* gl_version;
|
2013-04-08 14:50:58 +02:00
|
|
|
const char* glsl_version;
|
2013-10-29 01:23:17 -04:00
|
|
|
|
2013-03-25 15:14:24 +01:00
|
|
|
s32 max_samples;
|
2014-07-08 16:49:33 +02:00
|
|
|
};
|
|
|
|
extern VideoConfig g_ogl_config;
|
2013-03-25 15:14:24 +01:00
|
|
|
|
2010-11-18 02:21:26 +00:00
|
|
|
class Renderer : public ::Renderer
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Renderer();
|
|
|
|
~Renderer();
|
2013-10-29 01:23:17 -04:00
|
|
|
|
2013-01-25 20:39:19 +01:00
|
|
|
static void Init();
|
|
|
|
static void Shutdown();
|
2010-11-18 02:21:26 +00:00
|
|
|
|
2013-10-29 01:34:26 -04:00
|
|
|
void SetColorMask() override;
|
|
|
|
void SetBlendMode(bool forceUpdate) override;
|
2014-02-04 21:17:38 +01:00
|
|
|
void SetScissorRect(const EFBRectangle& rc) override;
|
2013-10-29 01:34:26 -04:00
|
|
|
void SetGenerationMode() override;
|
|
|
|
void SetDepthMode() override;
|
|
|
|
void SetLogicOpMode() override;
|
|
|
|
void SetDitherMode() override;
|
2015-03-01 13:04:48 +01:00
|
|
|
void SetSamplerState(int stage, int texindex, bool custom_tex) override;
|
2013-10-29 01:34:26 -04:00
|
|
|
void SetInterlacingMode() override;
|
2014-02-04 10:45:38 +01:00
|
|
|
void SetViewport() override;
|
2010-11-18 02:21:26 +00:00
|
|
|
|
2012-03-30 01:56:24 +02:00
|
|
|
// TODO: Implement and use these
|
2013-10-29 01:34:26 -04:00
|
|
|
void ApplyState(bool bUseDstAlpha) override {}
|
|
|
|
void RestoreState() override {}
|
2011-01-24 08:44:32 +00:00
|
|
|
|
2014-03-12 15:33:41 -04:00
|
|
|
void RenderText(const std::string& text, int left, int top, u32 color) override;
|
2014-12-20 13:02:00 +01:00
|
|
|
void ShowEfbCopyRegions();
|
2013-11-15 13:00:38 +13:00
|
|
|
void FlipImageData(u8 *data, int w, int h, int pixel_width = 3);
|
2010-11-18 02:21:26 +00:00
|
|
|
|
2013-10-29 01:34:26 -04:00
|
|
|
u32 AccessEFB(EFBAccessType type, u32 x, u32 y, u32 poke_data) override;
|
2015-05-01 17:47:52 +02:00
|
|
|
void PokeEFB(EFBAccessType type, const std::vector<EfbPokeData>& data) override;
|
2010-11-18 02:21:26 +00:00
|
|
|
|
2014-11-13 23:26:49 +01:00
|
|
|
u16 BBoxRead(int index) override;
|
|
|
|
void BBoxWrite(int index, u16 value) override;
|
|
|
|
|
2013-10-29 01:34:26 -04:00
|
|
|
void ResetAPIState() override;
|
|
|
|
void RestoreAPIState() override;
|
2010-11-18 02:21:26 +00:00
|
|
|
|
2013-10-29 01:34:26 -04:00
|
|
|
TargetRectangle ConvertEFBRectangle(const EFBRectangle& rc) override;
|
2010-11-18 02:21:26 +00:00
|
|
|
|
2014-05-02 00:08:44 -07: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 01:34:26 -04: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 01:34:26 -04:00
|
|
|
void ReinterpretPixelData(unsigned int convtype) override;
|
2010-12-27 21:56:20 +00:00
|
|
|
|
2014-03-08 01:54:44 +01:00
|
|
|
bool SaveScreenshot(const std::string &filename, const TargetRectangle &rc) override;
|
2011-01-07 04:57:59 +00:00
|
|
|
|
2014-09-25 19:50:25 -04:00
|
|
|
int GetMaxTextureSize() override;
|
|
|
|
|
2011-08-22 06:15:02 +02:00
|
|
|
private:
|
2015-06-06 20:09:22 +02:00
|
|
|
void UpdateEFBCache(EFBAccessType type, u32 cacheRectIdx, const EFBRectangle& efbPixelRc, const TargetRectangle& targetPixelRc, const void* data);
|
2014-12-20 17:10:58 +01:00
|
|
|
|
|
|
|
void BlitScreen(TargetRectangle src, TargetRectangle dst, GLuint src_texture, int src_width, int src_height);
|
2010-11-18 02:21:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|