2015-05-23 22:55:12 -06:00
|
|
|
// Copyright 2009 Dolphin Emulator Project
|
2015-05-17 17:08:10 -06:00
|
|
|
// Licensed under GPLv2+
|
2013-04-17 21:09:55 -06:00
|
|
|
// Refer to the license.txt file included.
|
2009-07-05 20:10:26 -06:00
|
|
|
|
|
|
|
// ------------------------------------------
|
2011-02-13 19:18:03 -07:00
|
|
|
// Video backend must define these functions
|
2009-07-05 20:10:26 -06:00
|
|
|
// ------------------------------------------
|
|
|
|
|
2014-02-10 11:54:46 -07:00
|
|
|
#pragma once
|
2009-07-05 20:10:26 -06:00
|
|
|
|
2014-02-17 03:18:15 -07:00
|
|
|
#include "VideoCommon/VideoCommon.h"
|
2009-07-05 20:10:26 -06:00
|
|
|
|
2016-01-17 14:54:31 -07:00
|
|
|
struct BPCmd;
|
|
|
|
|
2009-07-05 20:10:26 -06:00
|
|
|
namespace BPFunctions
|
|
|
|
{
|
|
|
|
void FlushPipeline();
|
2012-01-01 13:46:02 -07:00
|
|
|
void SetGenerationMode();
|
2011-09-05 14:04:28 -06:00
|
|
|
void SetScissor();
|
2018-01-21 05:04:15 -07:00
|
|
|
void SetViewport();
|
2012-01-01 13:46:02 -07:00
|
|
|
void SetDepthMode();
|
|
|
|
void SetBlendMode();
|
2019-04-15 08:47:46 -06:00
|
|
|
void ClearScreen(const MathUtil::Rectangle<int>& rc);
|
2012-01-01 13:46:02 -07:00
|
|
|
void OnPixelFormatChange();
|
2016-06-24 02:43:46 -06:00
|
|
|
void SetInterlacingMode(const BPCmd& bp);
|
2019-05-05 17:48:12 -06:00
|
|
|
} // namespace BPFunctions
|