2015-05-24 06:55:12 +02:00
|
|
|
// Copyright 2009 Dolphin Emulator Project
|
2021-07-05 03:22:19 +02: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 13:54:46 -05:00
|
|
|
#pragma once
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2019-07-16 20:18:48 -04:00
|
|
|
#include "Common/MathUtil.h"
|
2009-07-06 02:10:26 +00:00
|
|
|
|
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();
|
2012-01-01 12:46:02 -08:00
|
|
|
void SetGenerationMode();
|
2011-09-05 22:04:28 +02:00
|
|
|
void SetScissor();
|
2018-01-21 22:04:15 +10:00
|
|
|
void SetViewport();
|
2012-01-01 12:46:02 -08:00
|
|
|
void SetDepthMode();
|
|
|
|
void SetBlendMode();
|
2019-04-16 00:47:46 +10:00
|
|
|
void ClearScreen(const MathUtil::Rectangle<int>& rc);
|
2012-01-01 12:46:02 -08: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
|