Files
dolphin/Source/Core/VideoBackends/Software/SWRenderer.h
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
541 B
C++
Raw Normal View History

// Copyright 2008 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2010-06-09 01:37:08 +00:00
#pragma once
2010-06-09 01:37:08 +00:00
2018-10-03 23:03:26 +10:00
#include <memory>
#include <string_view>
2018-10-03 23:03:26 +10:00
2014-02-17 05:18:15 -05:00
#include "Common/CommonTypes.h"
2015-10-09 20:50:36 +02:00
#include "VideoCommon/RenderBase.h"
namespace SW
{
class SWRenderer final : public Renderer
{
2015-10-09 20:50:36 +02:00
public:
u32 AccessEFB(EFBAccessType type, u32 x, u32 y, u32 poke_data) override;
2017-07-30 15:56:12 -04:00
void PokeEFB(EFBAccessType type, const EfbPokeData* points, size_t num_points) override {}
2015-10-09 20:50:36 +02:00
void ReinterpretPixelData(EFBReinterpretType convtype) override {}
2015-10-09 20:50:36 +02:00
};
} // namespace SW