2010-11-17 19:21:26 -07:00
|
|
|
|
|
|
|
#ifndef _RENDER_H_
|
|
|
|
#define _RENDER_H_
|
|
|
|
|
|
|
|
#include "RenderBase.h"
|
|
|
|
|
|
|
|
namespace OGL
|
|
|
|
{
|
|
|
|
|
2011-08-21 22:15:02 -06:00
|
|
|
void ClearEFBCache();
|
|
|
|
|
2013-04-08 06:50:58 -06:00
|
|
|
enum GLSL_VERSION {
|
|
|
|
GLSL_120,
|
|
|
|
GLSL_130,
|
2013-05-05 22:22:21 -06:00
|
|
|
GLSL_140, // and above
|
|
|
|
GLSLES3
|
2013-04-08 06:50:58 -06:00
|
|
|
};
|
|
|
|
|
2013-03-25 08:14:24 -06:00
|
|
|
// ogl-only config, so not in VideoConfig.h
|
|
|
|
extern struct VideoConfig {
|
|
|
|
bool bSupportsGLSLCache;
|
|
|
|
bool bSupportsGLPinnedMemory;
|
|
|
|
bool bSupportsGLSync;
|
|
|
|
bool bSupportsGLBaseVertex;
|
|
|
|
bool bSupportCoverageMSAA;
|
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-03-25 08:14:24 -06:00
|
|
|
|
|
|
|
const char *gl_vendor;
|
|
|
|
const char *gl_renderer;
|
|
|
|
const char* gl_version;
|
2013-04-08 06:50:58 -06:00
|
|
|
const char* glsl_version;
|
2013-03-25 08:14:24 -06:00
|
|
|
|
|
|
|
s32 max_samples;
|
|
|
|
} g_ogl_config;
|
|
|
|
|
2010-11-17 19:21:26 -07:00
|
|
|
class Renderer : public ::Renderer
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Renderer();
|
|
|
|
~Renderer();
|
2013-01-25 12:39:19 -07:00
|
|
|
|
|
|
|
static void Init();
|
|
|
|
static void Shutdown();
|
2010-11-17 19:21:26 -07:00
|
|
|
|
|
|
|
void SetColorMask();
|
|
|
|
void SetBlendMode(bool forceUpdate);
|
2011-09-05 14:04:28 -06:00
|
|
|
void SetScissorRect(const TargetRectangle& rc);
|
2010-11-17 19:21:26 -07:00
|
|
|
void SetGenerationMode();
|
|
|
|
void SetDepthMode();
|
|
|
|
void SetLogicOpMode();
|
|
|
|
void SetDitherMode();
|
|
|
|
void SetLineWidth();
|
|
|
|
void SetSamplerState(int stage,int texindex);
|
|
|
|
void SetInterlacingMode();
|
|
|
|
|
2012-03-29 17:56:24 -06:00
|
|
|
// TODO: Implement and use these
|
2012-08-10 10:57:37 -06:00
|
|
|
void ApplyState(bool bUseDstAlpha) {}
|
|
|
|
void RestoreState() {}
|
2011-01-24 01:44:32 -07:00
|
|
|
|
2010-11-17 19:21:26 -07:00
|
|
|
void RenderText(const char* pstr, int left, int top, u32 color);
|
|
|
|
void DrawDebugInfo();
|
|
|
|
void FlipImageData(u8 *data, int w, int h);
|
|
|
|
|
|
|
|
u32 AccessEFB(EFBAccessType type, u32 x, u32 y, u32 poke_data);
|
|
|
|
|
|
|
|
void ResetAPIState();
|
|
|
|
void RestoreAPIState();
|
|
|
|
|
|
|
|
TargetRectangle ConvertEFBRectangle(const EFBRectangle& rc);
|
|
|
|
|
2010-12-26 20:18:01 -07:00
|
|
|
void Swap(u32 xfbAddr, FieldType field, u32 fbWidth, u32 fbHeight, const EFBRectangle& rc,float Gamma);
|
2010-11-17 19:21:26 -07:00
|
|
|
|
2010-12-19 15:00:25 -07:00
|
|
|
void ClearScreen(const EFBRectangle& rc, bool colorEnable, bool alphaEnable, bool zEnable, u32 color, u32 z);
|
2010-11-17 19:21:26 -07:00
|
|
|
|
2010-12-27 14:56:20 -07:00
|
|
|
void ReinterpretPixelData(unsigned int convtype);
|
|
|
|
|
2011-05-11 20:14:45 -06:00
|
|
|
void UpdateViewport(Matrix44& vpCorrection);
|
2010-11-17 19:21:26 -07:00
|
|
|
|
|
|
|
bool SaveScreenshot(const std::string &filename, const TargetRectangle &rc);
|
2011-01-06 21:57:59 -07:00
|
|
|
|
2011-01-30 18:28:32 -07:00
|
|
|
void SetPSConstant4f(unsigned int const_number, float f1, float f2, float f3, float f4);
|
|
|
|
void SetPSConstant4fv(unsigned int const_number, const float *f);
|
|
|
|
void SetMultiPSConstant4fv(unsigned int const_number, unsigned int count, const float *f);
|
|
|
|
|
|
|
|
void SetVSConstant4f(unsigned int const_number, float f1, float f2, float f3, float f4);
|
|
|
|
void SetVSConstant4fv(unsigned int const_number, const float *f);
|
|
|
|
void SetMultiVSConstant3fv(unsigned int const_number, unsigned int count, const float *f);
|
|
|
|
void SetMultiVSConstant4fv(unsigned int const_number, unsigned int count, const float *f);
|
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
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|