blob: 24ebee7a21a9c2283b6a51f91b90bcb79939faa3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
// Copyright 2009 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
// ------------------------------------------
// Video backend must define these functions
// ------------------------------------------
#pragma once
#include "VideoCommon/VideoCommon.h"
struct BPCmd;
namespace BPFunctions
{
void FlushPipeline();
void SetGenerationMode();
void SetScissor();
void SetViewport();
void SetDepthMode();
void SetBlendMode();
void ClearScreen(const EFBRectangle& rc);
void OnPixelFormatChange();
void SetInterlacingMode(const BPCmd& bp);
}
|