2015-05-24 06:55:12 +02:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2021-07-05 03:22:19 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2010-06-09 03:37:08 +02:00
|
|
|
|
2014-02-10 19:54:46 +01:00
|
|
|
#pragma once
|
2010-06-09 03:37:08 +02:00
|
|
|
|
2014-02-17 11:18:15 +01:00
|
|
|
#include "Common/CommonTypes.h"
|
2009-10-10 23:19:39 +02:00
|
|
|
class PointerWrap;
|
2014-02-02 14:16:43 +01:00
|
|
|
namespace MMIO
|
|
|
|
{
|
|
|
|
class Mapping;
|
|
|
|
}
|
2010-06-09 03:37:08 +02:00
|
|
|
|
2017-02-28 12:57:31 +01:00
|
|
|
namespace PixelEngine
|
|
|
|
{
|
2009-10-10 23:19:39 +02:00
|
|
|
// internal hardware addresses
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
PE_ZCONF = 0x00, // Z Config
|
|
|
|
PE_ALPHACONF = 0x02, // Alpha Config
|
|
|
|
PE_DSTALPHACONF = 0x04, // Destination Alpha Config
|
|
|
|
PE_ALPHAMODE = 0x06, // Alpha Mode Config
|
|
|
|
PE_ALPHAREAD = 0x08, // Alpha Read
|
|
|
|
PE_CTRL_REGISTER = 0x0a, // Control
|
|
|
|
PE_TOKEN_REG = 0x0e, // Token
|
2014-09-14 18:52:51 +02:00
|
|
|
PE_BBOX_LEFT = 0x10, // Bounding Box Left Pixel
|
|
|
|
PE_BBOX_RIGHT = 0x12, // Bounding Box Right Pixel
|
|
|
|
PE_BBOX_TOP = 0x14, // Bounding Box Top Pixel
|
|
|
|
PE_BBOX_BOTTOM = 0x16, // Bounding Box Bottom Pixel
|
2010-06-09 03:37:08 +02:00
|
|
|
|
2012-05-29 13:54:20 +02:00
|
|
|
// NOTE: Order not verified
|
|
|
|
// These indicate the number of quads that are being used as input/output for each particular
|
|
|
|
// stage
|
|
|
|
PE_PERF_ZCOMP_INPUT_ZCOMPLOC_L = 0x18,
|
|
|
|
PE_PERF_ZCOMP_INPUT_ZCOMPLOC_H = 0x1a,
|
|
|
|
PE_PERF_ZCOMP_OUTPUT_ZCOMPLOC_L = 0x1c,
|
|
|
|
PE_PERF_ZCOMP_OUTPUT_ZCOMPLOC_H = 0x1e,
|
|
|
|
PE_PERF_ZCOMP_INPUT_L = 0x20,
|
|
|
|
PE_PERF_ZCOMP_INPUT_H = 0x22,
|
|
|
|
PE_PERF_ZCOMP_OUTPUT_L = 0x24,
|
|
|
|
PE_PERF_ZCOMP_OUTPUT_H = 0x26,
|
|
|
|
PE_PERF_BLEND_INPUT_L = 0x28,
|
|
|
|
PE_PERF_BLEND_INPUT_H = 0x2a,
|
|
|
|
PE_PERF_EFB_COPY_CLOCKS_L = 0x2c,
|
|
|
|
PE_PERF_EFB_COPY_CLOCKS_H = 0x2e,
|
2009-10-10 23:19:39 +02:00
|
|
|
};
|
2010-06-09 03:37:08 +02:00
|
|
|
|
2010-10-24 21:52:52 +02:00
|
|
|
// ReadMode specifies the returned alpha channel for EFB peeks
|
2017-01-04 12:45:40 +01:00
|
|
|
union UPEAlphaReadReg
|
|
|
|
{
|
2010-10-24 21:52:52 +02:00
|
|
|
u16 Hex;
|
|
|
|
struct
|
|
|
|
{
|
2014-02-16 21:30:18 +01:00
|
|
|
u16 ReadMode : 2;
|
|
|
|
u16 : 14;
|
2010-10-24 21:52:52 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2009-10-10 23:19:39 +02:00
|
|
|
void Init();
|
|
|
|
void DoState(PointerWrap& p);
|
2010-06-09 03:37:08 +02:00
|
|
|
|
2014-02-02 14:16:43 +01:00
|
|
|
void RegisterMMIO(MMIO::Mapping* mmio, u32 base);
|
|
|
|
|
2011-02-14 03:18:03 +01:00
|
|
|
// gfx backend support
|
2016-08-10 09:44:08 +02:00
|
|
|
void SetToken(const u16 token, const bool interrupt);
|
2014-08-30 18:41:21 +02:00
|
|
|
void SetFinish();
|
2014-02-15 03:23:35 +01:00
|
|
|
UPEAlphaReadReg GetAlphaReadMode();
|
2010-06-09 03:37:08 +02:00
|
|
|
|
2021-06-07 10:55:52 +02:00
|
|
|
} // namespace PixelEngine
|