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
|
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
|
|
|
|
2016-01-17 22:54:31 +01:00
|
|
|
#include "Common/CommonTypes.h"
|
2019-07-17 02:18:48 +02:00
|
|
|
#include "Common/MathUtil.h"
|
2016-01-17 22:54:31 +01:00
|
|
|
#include "VideoCommon/PerfQueryBase.h"
|
2010-06-09 03:37:08 +02:00
|
|
|
|
2009-10-12 02:48:24 +02:00
|
|
|
namespace EfbInterface
|
|
|
|
{
|
2013-08-22 14:07:21 +02:00
|
|
|
// xfb color format - packed so the compiler doesn't mess with alignment
|
2013-08-20 14:56:19 +02:00
|
|
|
#pragma pack(push, 1)
|
2014-07-24 02:26:54 +02:00
|
|
|
struct yuv422_packed
|
|
|
|
{
|
2013-08-20 13:51:39 +02:00
|
|
|
u8 Y;
|
|
|
|
u8 UV;
|
2014-07-24 02:26:54 +02:00
|
|
|
};
|
2013-08-20 14:56:19 +02:00
|
|
|
#pragma pack(pop)
|
2013-08-20 13:51:39 +02:00
|
|
|
|
2013-08-20 14:56:19 +02:00
|
|
|
// But this struct is only used internally, so we could optimise alignment
|
2014-07-24 02:26:54 +02:00
|
|
|
struct yuv444
|
|
|
|
{
|
2013-08-20 13:51:39 +02:00
|
|
|
u8 Y;
|
|
|
|
s8 U;
|
|
|
|
s8 V;
|
2014-07-24 02:26:54 +02:00
|
|
|
};
|
2010-06-09 03:37:08 +02:00
|
|
|
|
2014-08-11 03:18:38 +02:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
ALP_C,
|
|
|
|
BLU_C,
|
|
|
|
GRN_C,
|
|
|
|
RED_C
|
|
|
|
};
|
2013-08-22 14:07:21 +02:00
|
|
|
|
|
|
|
// color order is ABGR in order to emulate RGBA on little-endian hardware
|
|
|
|
|
2009-10-12 02:48:24 +02:00
|
|
|
// does full blending of an incoming pixel
|
|
|
|
void BlendTev(u16 x, u16 y, u8* color);
|
2010-06-09 03:37:08 +02:00
|
|
|
|
2009-10-12 02:48:24 +02:00
|
|
|
// compare z at location x,y
|
|
|
|
// writes it if it passes
|
|
|
|
// returns result of compare.
|
|
|
|
bool ZCompare(u16 x, u16 y, u32 z);
|
2010-06-09 03:37:08 +02:00
|
|
|
|
2009-10-12 02:48:24 +02:00
|
|
|
// sets the color and alpha
|
|
|
|
void SetColor(u16 x, u16 y, u8* color);
|
|
|
|
void SetDepth(u16 x, u16 y, u32 depth);
|
2010-06-09 03:37:08 +02:00
|
|
|
|
2016-09-22 00:53:13 +02:00
|
|
|
u32 GetColor(u16 x, u16 y);
|
2009-10-12 02:48:24 +02:00
|
|
|
u32 GetDepth(u16 x, u16 y);
|
2010-06-09 03:37:08 +02:00
|
|
|
|
2009-10-12 02:48:24 +02:00
|
|
|
u8* GetPixelPointer(u16 x, u16 y, bool depth);
|
2010-06-09 03:37:08 +02:00
|
|
|
|
2019-04-15 16:47:46 +02:00
|
|
|
void EncodeXFB(u8* xfb_in_ram, u32 memory_stride, const MathUtil::Rectangle<int>& source_rect,
|
|
|
|
float y_scale, float gamma);
|
2013-08-20 13:51:39 +02:00
|
|
|
|
2018-05-18 21:13:03 +02:00
|
|
|
u32 GetPerfQueryResult(PerfQueryType type);
|
|
|
|
void ResetPerfQuery();
|
|
|
|
void IncPerfCounterQuadCount(PerfQueryType type);
|
|
|
|
} // namespace EfbInterface
|