2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2009 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2009-06-22 07:44:20 +00:00
|
|
|
// ------------------------------------------
|
2011-02-14 02:18:03 +00:00
|
|
|
// Video backend must define these functions
|
2009-06-22 07:44:20 +00:00
|
|
|
// ------------------------------------------
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2019-07-17 00:18:48 +00:00
|
|
|
#include "Common/MathUtil.h"
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2016-01-17 21:54:31 +00:00
|
|
|
struct BPCmd;
|
|
|
|
|
2009-06-22 09:31:30 +00:00
|
|
|
namespace BPFunctions
|
2009-06-22 07:44:20 +00:00
|
|
|
{
|
|
|
|
void FlushPipeline();
|
2012-01-01 20:46:02 +00:00
|
|
|
void SetGenerationMode();
|
2011-09-05 20:04:28 +00:00
|
|
|
void SetScissor();
|
2018-01-21 12:04:15 +00:00
|
|
|
void SetViewport();
|
2012-01-01 20:46:02 +00:00
|
|
|
void SetDepthMode();
|
|
|
|
void SetBlendMode();
|
2019-04-15 14:47:46 +00:00
|
|
|
void ClearScreen(const MathUtil::Rectangle<int>& rc);
|
2012-01-01 20:46:02 +00:00
|
|
|
void OnPixelFormatChange();
|
2009-07-26 09:52:35 +00:00
|
|
|
void SetInterlacingMode(const BPCmd& bp);
|
2019-05-05 23:48:12 +00:00
|
|
|
} // namespace BPFunctions
|