Files
dolphin/Source/Core/VideoCommon/BPFunctions.h
T

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

26 lines
591 B
C++
Raw Normal View History

// Copyright 2009 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2009-06-22 07:44:20 +00:00
// ------------------------------------------
// Video backend must define these functions
2009-06-22 07:44:20 +00:00
// ------------------------------------------
#pragma once
#include "Common/MathUtil.h"
2016-01-17 16:54:31 -05:00
struct BPCmd;
2009-06-22 09:31:30 +00:00
namespace BPFunctions
2009-06-22 07:44:20 +00:00
{
void FlushPipeline();
void SetGenerationMode();
void SetScissor();
void SetViewport();
void SetDepthMode();
void SetBlendMode();
void ClearScreen(const MathUtil::Rectangle<int>& rc);
void OnPixelFormatChange();
void SetInterlacingMode(const BPCmd& bp);
2019-05-05 23:48:12 +00:00
} // namespace BPFunctions