2015-05-24 04:32:32 +00:00
|
|
|
// Copyright 2010 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2010-11-18 02:21:26 +00:00
|
|
|
|
2014-03-12 19:33:41 +00:00
|
|
|
#include <string>
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "VideoCommon/RenderBase.h"
|
2010-11-18 02:21:26 +00:00
|
|
|
|
2017-01-23 16:20:20 +00:00
|
|
|
enum class EFBAccessType;
|
|
|
|
|
2010-11-18 02:21:26 +00:00
|
|
|
namespace DX11
|
|
|
|
{
|
2017-01-23 16:20:20 +00:00
|
|
|
class D3DTexture2D;
|
|
|
|
|
2010-11-18 02:21:26 +00:00
|
|
|
class Renderer : public ::Renderer
|
|
|
|
{
|
|
|
|
public:
|
2017-03-04 06:40:08 +00:00
|
|
|
Renderer();
|
|
|
|
~Renderer() override;
|
2010-11-18 02:21:26 +00:00
|
|
|
|
2017-04-29 15:00:45 +00:00
|
|
|
void SetBlendingState(const BlendingState& state) override;
|
2016-06-24 08:43:46 +00:00
|
|
|
void SetScissorRect(const EFBRectangle& rc) override;
|
2017-04-30 08:07:57 +00:00
|
|
|
void SetRasterizationState(const RasterizationState& state) override;
|
2017-04-30 05:54:45 +00:00
|
|
|
void SetDepthState(const DepthState& state) override;
|
2017-09-09 08:30:15 +00:00
|
|
|
void SetSamplerState(u32 index, const SamplerState& state) override;
|
2016-06-24 08:43:46 +00:00
|
|
|
void SetInterlacingMode() override;
|
|
|
|
void SetViewport() override;
|
2016-11-09 00:07:56 +00:00
|
|
|
void SetFullscreen(bool enable_fullscreen) override;
|
2016-11-13 21:16:29 +00:00
|
|
|
bool IsFullscreen() const override;
|
2010-11-18 02:21:26 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
// TODO: Fix confusing names (see ResetAPIState and RestoreAPIState)
|
2016-12-28 00:37:41 +00:00
|
|
|
void ApplyState() override;
|
2016-06-24 08:43:46 +00:00
|
|
|
void RestoreState() override;
|
2011-01-24 08:44:32 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
void RenderText(const std::string& text, int left, int top, u32 color) override;
|
2010-11-18 02:21:26 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
u32 AccessEFB(EFBAccessType type, u32 x, u32 y, u32 poke_data) override;
|
|
|
|
void PokeEFB(EFBAccessType type, const EfbPokeData* points, size_t num_points) override;
|
2015-12-19 05:45:21 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
u16 BBoxRead(int index) override;
|
|
|
|
void BBoxWrite(int index, u16 value) override;
|
2010-11-18 02:21:26 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
void ResetAPIState() override;
|
|
|
|
void RestoreAPIState() override;
|
2010-11-18 02:21:26 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
TargetRectangle ConvertEFBRectangle(const EFBRectangle& rc) override;
|
2010-11-18 02:21:26 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
void SwapImpl(u32 xfbAddr, u32 fbWidth, u32 fbStride, u32 fbHeight, const EFBRectangle& rc,
|
2016-10-08 10:56:28 +00:00
|
|
|
u64 ticks, float Gamma) override;
|
2010-11-18 02:21:26 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
void ClearScreen(const EFBRectangle& rc, bool colorEnable, bool alphaEnable, bool zEnable,
|
|
|
|
u32 color, u32 z) override;
|
2010-12-27 21:56:20 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
void ReinterpretPixelData(unsigned int convtype) override;
|
2010-12-27 21:56:20 +00:00
|
|
|
|
2017-03-04 06:39:50 +00:00
|
|
|
bool CheckForResize();
|
2014-09-25 23:50:25 +00:00
|
|
|
|
2014-12-20 17:20:49 +00:00
|
|
|
private:
|
2016-06-24 08:43:46 +00:00
|
|
|
void BlitScreen(TargetRectangle src, TargetRectangle dst, D3DTexture2D* src_texture,
|
|
|
|
u32 src_width, u32 src_height, float Gamma);
|
2010-11-18 02:21:26 +00:00
|
|
|
};
|
|
|
|
}
|