2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2009 Dolphin Emulator Project
|
2015-05-17 23:08:10 +00:00
|
|
|
// Licensed under GPLv2+
|
2013-04-18 03:29:41 +00:00
|
|
|
// Refer to the license.txt file included.
|
2010-06-09 01:37:08 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2010-06-09 01:37:08 +00:00
|
|
|
|
2016-01-17 21:54:31 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
|
|
|
#include "VideoCommon/PerfQueryBase.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "VideoCommon/VideoCommon.h"
|
2010-06-09 01:37:08 +00:00
|
|
|
|
|
|
|
namespace EfbInterface
|
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
// xfb color format - packed so the compiler doesn't mess with alignment
|
|
|
|
#pragma pack(push, 1)
|
|
|
|
struct yuv422_packed
|
|
|
|
{
|
|
|
|
u8 Y;
|
|
|
|
u8 UV;
|
|
|
|
};
|
2013-08-20 12:56:19 +00:00
|
|
|
#pragma pack(pop)
|
2013-08-20 11:51:39 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
// But this struct is only used internally, so we could optimise alignment
|
|
|
|
struct yuv444
|
|
|
|
{
|
|
|
|
u8 Y;
|
|
|
|
s8 U;
|
|
|
|
s8 V;
|
|
|
|
};
|
2010-06-09 01:37:08 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
ALP_C,
|
|
|
|
BLU_C,
|
|
|
|
GRN_C,
|
|
|
|
RED_C
|
|
|
|
};
|
2013-08-22 12:07:21 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
// color order is ABGR in order to emulate RGBA on little-endian hardware
|
2013-08-22 12:07:21 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
// does full blending of an incoming pixel
|
|
|
|
void BlendTev(u16 x, u16 y, u8* color);
|
2010-06-09 01:37:08 +00:00
|
|
|
|
2016-06-24 08:43:46 +00: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 01:37:08 +00:00
|
|
|
|
2016-06-24 08:43:46 +00: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 01:37:08 +00:00
|
|
|
|
2016-09-21 22:53:13 +00:00
|
|
|
u32 GetColor(u16 x, u16 y);
|
2016-06-24 08:43:46 +00:00
|
|
|
u32 GetDepth(u16 x, u16 y);
|
2010-06-09 01:37:08 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
u8* GetPixelPointer(u16 x, u16 y, bool depth);
|
2010-06-09 01:37:08 +00:00
|
|
|
|
2016-05-17 20:21:02 +00:00
|
|
|
void EncodeXFB(u8* xfb_in_ram, u32 memory_stride, const EFBRectangle& source_rect, float y_scale,
|
2018-04-29 08:52:30 +00:00
|
|
|
float gamma);
|
2013-08-20 11:51:39 +00:00
|
|
|
|
2018-05-18 19:13:03 +00:00
|
|
|
u32 GetPerfQueryResult(PerfQueryType type);
|
|
|
|
void ResetPerfQuery();
|
|
|
|
void IncPerfCounterQuadCount(PerfQueryType type);
|
|
|
|
} // namespace EfbInterface
|