2015-05-23 22:55:12 -06:00
|
|
|
// Copyright 2008 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-02-22 23:17:57 -07:00
|
|
|
|
2014-02-10 11:54:46 -07:00
|
|
|
#pragma once
|
2019-07-16 18:18:48 -06:00
|
|
|
|
2014-09-07 19:06:58 -06:00
|
|
|
#include "Common/CommonTypes.h"
|
2009-02-22 23:17:57 -07:00
|
|
|
|
2009-02-28 12:02:37 -07:00
|
|
|
// These are accurate (disregarding AA modes).
|
2019-04-28 03:39:59 -06:00
|
|
|
constexpr u32 EFB_WIDTH = 640;
|
|
|
|
constexpr u32 EFB_HEIGHT = 528;
|
2009-02-22 23:17:57 -07:00
|
|
|
|
2015-07-24 11:46:41 -06:00
|
|
|
// Max XFB width is 720. You can only copy out 640 wide areas of efb to XFB
|
|
|
|
// so you need multiple copies to do the full width.
|
|
|
|
// The VI can do horizontal scaling (TODO: emulate).
|
2019-04-28 03:39:59 -06:00
|
|
|
constexpr u32 MAX_XFB_WIDTH = 720;
|
2009-07-14 18:51:24 -06:00
|
|
|
|
2016-11-09 17:41:16 -07:00
|
|
|
// Although EFB height is 528, 576-line XFB's can be created either with
|
2012-12-30 02:28:50 -07:00
|
|
|
// vertical scaling by the EFB copy operation or copying to multiple XFB's
|
|
|
|
// that are next to each other in memory (TODO: handle that situation).
|
2019-04-28 03:39:59 -06:00
|
|
|
constexpr u32 MAX_XFB_HEIGHT = 576;
|
2009-02-22 23:17:57 -07:00
|
|
|
|
|
|
|
#ifdef _WIN32
|
2012-08-20 05:12:49 -06:00
|
|
|
#define PRIM_LOG(...) DEBUG_LOG(VIDEO, __VA_ARGS__)
|
2009-02-22 23:17:57 -07:00
|
|
|
#else
|
2012-08-20 05:12:49 -06:00
|
|
|
#define PRIM_LOG(...) DEBUG_LOG(VIDEO, ##__VA_ARGS__)
|
2009-02-22 23:17:57 -07:00
|
|
|
#endif
|
|
|
|
|
2013-02-21 03:45:29 -07:00
|
|
|
// warning: mapping buffer should be disabled to use this
|
2014-12-09 00:30:38 -07:00
|
|
|
// #define LOG_VTX() DEBUG_LOG(VIDEO, "vtx: %f %f %f, ", ((float*)g_vertex_manager_write_ptr)[-3],
|
|
|
|
// ((float*)g_vertex_manager_write_ptr)[-2], ((float*)g_vertex_manager_write_ptr)[-1]);
|
2009-09-08 15:16:05 -06:00
|
|
|
|
|
|
|
#define LOG_VTX()
|
2009-02-22 23:17:57 -07:00
|
|
|
|
2016-07-21 17:04:57 -06:00
|
|
|
enum class APIType
|
2010-06-14 08:36:01 -06:00
|
|
|
{
|
2016-07-21 17:04:57 -06:00
|
|
|
OpenGL,
|
|
|
|
D3D,
|
2016-08-12 08:55:00 -06:00
|
|
|
Vulkan,
|
2016-07-21 17:04:57 -06:00
|
|
|
Nothing
|
2015-09-14 17:43:31 -06:00
|
|
|
};
|
2010-06-14 08:36:01 -06:00
|
|
|
|
2010-12-26 20:09:11 -07:00
|
|
|
inline u32 RGBA8ToRGBA6ToRGBA8(u32 src)
|
|
|
|
{
|
|
|
|
u32 color = src;
|
|
|
|
color &= 0xFCFCFCFC;
|
|
|
|
color |= (color >> 6) & 0x03030303;
|
|
|
|
return color;
|
|
|
|
}
|
|
|
|
|
2010-12-27 11:09:03 -07:00
|
|
|
inline u32 RGBA8ToRGB565ToRGBA8(u32 src)
|
2010-12-26 20:09:11 -07:00
|
|
|
{
|
2011-01-28 21:31:56 -07:00
|
|
|
u32 color = (src & 0xF8FCF8);
|
|
|
|
color |= (color >> 5) & 0x070007;
|
|
|
|
color |= (color >> 6) & 0x000300;
|
|
|
|
color |= 0xFF000000;
|
2010-12-26 20:09:11 -07:00
|
|
|
return color;
|
|
|
|
}
|
|
|
|
|
2010-12-27 11:09:03 -07:00
|
|
|
inline u32 Z24ToZ16ToZ24(u32 src)
|
|
|
|
{
|
|
|
|
return (src & 0xFFFF00) | (src >> 16);
|
|
|
|
}
|