2010-11-18 04:21:26 +02:00
|
|
|
|
|
|
|
#ifndef _RENDER_H_
|
|
|
|
#define _RENDER_H_
|
|
|
|
|
|
|
|
#include "RenderBase.h"
|
|
|
|
|
|
|
|
namespace OGL
|
|
|
|
{
|
|
|
|
|
2011-08-22 07:15:02 +03:00
|
|
|
void ClearEFBCache();
|
|
|
|
|
2010-11-18 04:21:26 +02:00
|
|
|
class Renderer : public ::Renderer
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Renderer();
|
|
|
|
~Renderer();
|
|
|
|
|
|
|
|
void SetColorMask();
|
|
|
|
void SetBlendMode(bool forceUpdate);
|
2011-09-05 23:04:28 +03:00
|
|
|
void SetScissorRect(const TargetRectangle& rc);
|
2010-11-18 04:21:26 +02:00
|
|
|
void SetGenerationMode();
|
|
|
|
void SetDepthMode();
|
|
|
|
void SetLogicOpMode();
|
|
|
|
void SetDitherMode();
|
|
|
|
void SetLineWidth();
|
|
|
|
void SetSamplerState(int stage,int texindex);
|
|
|
|
void SetInterlacingMode();
|
|
|
|
|
2012-03-30 00:26:58 +03:00
|
|
|
void ApplyState(RenderStateMode mode);
|
|
|
|
void RestoreState(RenderStateMode mode);
|
2011-01-24 10:44:32 +02:00
|
|
|
|
2010-11-18 04:21:26 +02: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 05:18:01 +02:00
|
|
|
void Swap(u32 xfbAddr, FieldType field, u32 fbWidth, u32 fbHeight, const EFBRectangle& rc,float Gamma);
|
2010-11-18 04:21:26 +02:00
|
|
|
|
2010-12-20 00:00:25 +02:00
|
|
|
void ClearScreen(const EFBRectangle& rc, bool colorEnable, bool alphaEnable, bool zEnable, u32 color, u32 z);
|
2010-11-18 04:21:26 +02:00
|
|
|
|
2010-12-27 23:56:20 +02:00
|
|
|
void ReinterpretPixelData(unsigned int convtype);
|
|
|
|
|
2011-05-12 05:14:45 +03:00
|
|
|
void UpdateViewport(Matrix44& vpCorrection);
|
2010-11-18 04:21:26 +02:00
|
|
|
|
|
|
|
bool SaveScreenshot(const std::string &filename, const TargetRectangle &rc);
|
2011-01-07 06:57:59 +02:00
|
|
|
|
2011-01-31 03:28:32 +02: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 07:15:02 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
void UpdateEFBCache(EFBAccessType type, u32 cacheRectIdx, const EFBRectangle& efbPixelRc, const TargetRectangle& targetPixelRc, const u32* data);
|
2010-11-18 04:21:26 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|