2014-02-10 20:54:46 +02:00
|
|
|
#pragma once
|
2010-11-18 04:21:26 +02:00
|
|
|
|
2014-03-12 21:33:41 +02:00
|
|
|
#include <string>
|
2014-02-17 12:18:15 +02:00
|
|
|
#include "VideoCommon/RenderBase.h"
|
2010-11-18 04:21:26 +02:00
|
|
|
|
|
|
|
namespace DX11
|
|
|
|
{
|
|
|
|
|
|
|
|
class Renderer : public ::Renderer
|
|
|
|
{
|
|
|
|
public:
|
2014-06-15 01:23:43 +03:00
|
|
|
Renderer(void *&window_handle);
|
2010-11-18 04:21:26 +02:00
|
|
|
~Renderer();
|
|
|
|
|
2014-03-11 07:55:00 +02:00
|
|
|
void SetColorMask() override;
|
|
|
|
void SetBlendMode(bool forceUpdate) override;
|
|
|
|
void SetScissorRect(const EFBRectangle& rc) override;
|
|
|
|
void SetGenerationMode() override;
|
|
|
|
void SetDepthMode() override;
|
|
|
|
void SetLogicOpMode() override;
|
|
|
|
void SetDitherMode() override;
|
|
|
|
void SetLineWidth() override;
|
|
|
|
void SetSamplerState(int stage,int texindex) override;
|
|
|
|
void SetInterlacingMode() override;
|
|
|
|
void SetViewport() override;
|
2010-11-18 04:21:26 +02:00
|
|
|
|
2011-01-24 11:10:35 +02:00
|
|
|
// TODO: Fix confusing names (see ResetAPIState and RestoreAPIState)
|
2014-03-11 07:55:00 +02:00
|
|
|
void ApplyState(bool bUseDstAlpha) override;
|
|
|
|
void RestoreState() override;
|
2011-01-24 10:44:32 +02:00
|
|
|
|
2011-03-15 05:51:31 +02:00
|
|
|
void ApplyCullDisable();
|
|
|
|
void RestoreCull();
|
|
|
|
|
2014-03-11 07:55:00 +02:00
|
|
|
void RenderText(const std::string& text, int left, int top, u32 color) override;
|
2010-11-18 04:21:26 +02:00
|
|
|
|
2014-03-11 07:55:00 +02:00
|
|
|
u32 AccessEFB(EFBAccessType type, u32 x, u32 y, u32 poke_data) override;
|
2010-11-18 04:21:26 +02:00
|
|
|
|
2014-03-11 07:55:00 +02:00
|
|
|
void ResetAPIState() override;
|
|
|
|
void RestoreAPIState() override;
|
2010-11-18 04:21:26 +02:00
|
|
|
|
2014-03-11 07:55:00 +02:00
|
|
|
TargetRectangle ConvertEFBRectangle(const EFBRectangle& rc) override;
|
2010-11-18 04:21:26 +02:00
|
|
|
|
2014-05-02 10:08:44 +03:00
|
|
|
void SwapImpl(u32 xfbAddr, u32 fbWidth, u32 fbStride, u32 fbHeight, const EFBRectangle& rc, float Gamma) override;
|
2010-11-18 04:21:26 +02:00
|
|
|
|
2014-03-11 07:55:00 +02:00
|
|
|
void ClearScreen(const EFBRectangle& rc, bool colorEnable, bool alphaEnable, bool zEnable, u32 color, u32 z) override;
|
2010-12-27 23:56:20 +02:00
|
|
|
|
2014-03-11 07:55:00 +02:00
|
|
|
void ReinterpretPixelData(unsigned int convtype) override;
|
2010-12-27 23:56:20 +02:00
|
|
|
|
2014-03-11 07:55:00 +02:00
|
|
|
bool SaveScreenshot(const std::string &filename, const TargetRectangle &rc) override;
|
2010-11-18 04:21:26 +02:00
|
|
|
|
|
|
|
static bool CheckForResize();
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|