2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2010-11-18 02:21:26 +00:00
|
|
|
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "VideoCommon/RenderBase.h"
|
2010-11-18 02:21:26 +00:00
|
|
|
|
|
|
|
namespace DX11
|
|
|
|
{
|
|
|
|
|
|
|
|
class Renderer : public ::Renderer
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Renderer();
|
|
|
|
~Renderer();
|
|
|
|
|
|
|
|
void SetColorMask();
|
|
|
|
void SetBlendMode(bool forceUpdate);
|
2014-02-04 20:17:38 +00:00
|
|
|
void SetScissorRect(const EFBRectangle& 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();
|
2014-02-04 09:45:38 +00:00
|
|
|
void SetViewport();
|
2010-11-18 02:21:26 +00:00
|
|
|
|
2011-01-24 09:10:35 +00:00
|
|
|
// TODO: Fix confusing names (see ResetAPIState and RestoreAPIState)
|
2012-08-10 16:57:37 +00:00
|
|
|
void ApplyState(bool bUseDstAlpha);
|
2012-03-29 23:56:24 +00:00
|
|
|
void RestoreState();
|
2011-01-24 08:44:32 +00:00
|
|
|
|
2011-03-15 03:51:31 +00:00
|
|
|
void ApplyCullDisable();
|
|
|
|
void RestoreCull();
|
|
|
|
|
2010-11-18 02:21:26 +00:00
|
|
|
void RenderText(const char* pstr, int left, int top, u32 color);
|
|
|
|
|
|
|
|
u32 AccessEFB(EFBAccessType type, u32 x, u32 y, u32 poke_data);
|
|
|
|
|
|
|
|
void ResetAPIState();
|
|
|
|
void RestoreAPIState();
|
|
|
|
|
|
|
|
TargetRectangle ConvertEFBRectangle(const EFBRectangle& rc);
|
|
|
|
|
2014-02-05 10:48:45 +00:00
|
|
|
void SwapImpl(u32 xfbAddr, 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-12-27 21:56:20 +00:00
|
|
|
|
|
|
|
void ReinterpretPixelData(unsigned int convtype);
|
|
|
|
|
2013-11-09 23:10:20 +00:00
|
|
|
bool SaveScreenshot(const std::string &filename, const TargetRectangle &rc);
|
2010-11-18 02:21:26 +00:00
|
|
|
|
|
|
|
static bool CheckForResize();
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|