2010-11-18 02:21:26 +00:00
|
|
|
|
|
|
|
#ifndef _RENDER_H_
|
|
|
|
#define _RENDER_H_
|
|
|
|
|
|
|
|
#include "RenderBase.h"
|
|
|
|
|
|
|
|
namespace OGL
|
|
|
|
{
|
|
|
|
|
2011-08-22 04:15:02 +00:00
|
|
|
void ClearEFBCache();
|
|
|
|
|
2013-04-08 12:50:58 +00:00
|
|
|
enum GLSL_VERSION {
|
|
|
|
GLSL_120,
|
|
|
|
GLSL_130,
|
|
|
|
GLSL_140 // and above
|
|
|
|
};
|
|
|
|
|
2013-03-25 14:14:24 +00: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 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-03-25 14:14:24 +00:00
|
|
|
|
|
|
|
const char *gl_vendor;
|
|
|
|
const char *gl_renderer;
|
|
|
|
const char* gl_version;
|
2013-04-08 12:50:58 +00:00
|
|
|
const char* glsl_version;
|
2013-03-25 14:14:24 +00:00
|
|
|
|
|
|
|
s32 max_samples;
|
|
|
|
} g_ogl_config;
|
|
|
|
|
2010-11-18 02:21:26 +00:00
|
|
|
class Renderer : public ::Renderer
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Renderer();
|
|
|
|
~Renderer();
|
2013-01-25 19:39:19 +00:00
|
|
|
|
|
|
|
static void Init();
|
|
|
|
static void Shutdown();
|
2010-11-18 02:21:26 +00:00
|
|
|
|
|
|
|
void SetColorMask();
|
|
|
|
void SetBlendMode(bool forceUpdate);
|
2011-09-05 20:04:28 +00:00
|
|
|
void SetScissorRect(const TargetRectangle& rc);
|
2010-11-18 02:21:26 +00:00
|
|
|
void SetGenerationMode();
|
|
|
|
void SetDepthMode();
|
|
|
|
void SetLogicOpMode();
|
|
|
|
void SetDitherMode();
|
|
|
|
void SetLineWidth();
|
|
|
|
void SetSamplerState(int stage,int texindex);
|
|
|
|
void SetInterlacingMode();
|
|
|
|
|
2012-03-29 23:56:24 +00:00
|
|
|
// TODO: Implement and use these
|
2012-08-10 16:57:37 +00:00
|
|
|
void ApplyState(bool bUseDstAlpha) {}
|
|
|
|
void RestoreState() {}
|
2011-01-24 08:44:32 +00:00
|
|
|
|
2010-11-18 02:21:26 +00: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-27 03:18:01 +00:00
|
|
|
void Swap(u32 xfbAddr, FieldType field, u32 fbWidth, u32 fbHeight, const EFBRectangle& rc,float Gamma);
|
2010-11-18 02:21:26 +00:00
|
|
|
|
2010-12-19 22:00:25 +00:00
|
|
|
void ClearScreen(const EFBRectangle& rc, bool colorEnable, bool alphaEnable, bool zEnable, u32 color, u32 z);
|
2010-11-18 02:21:26 +00:00
|
|
|
|
2010-12-27 21:56:20 +00:00
|
|
|
void ReinterpretPixelData(unsigned int convtype);
|
|
|
|
|
2011-05-12 02:14:45 +00:00
|
|
|
void UpdateViewport(Matrix44& vpCorrection);
|
2010-11-18 02:21:26 +00:00
|
|
|
|
|
|
|
bool SaveScreenshot(const std::string &filename, const TargetRectangle &rc);
|
2011-01-07 04:57:59 +00:00
|
|
|
|
2011-01-31 01:28:32 +00: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-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
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|