mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-08-26 08:26:50 +00:00
Remove GGP support
This commit is contained in:
committed by
Jake Turner
parent
aa5538b2e9
commit
9ebd796cd8
@@ -82,8 +82,7 @@
|
||||
#define RENDERDOC_CC __cdecl
|
||||
|
||||
#elif defined(RENDERDOC_PLATFORM_LINUX) || defined(RENDERDOC_PLATFORM_APPLE) || \
|
||||
defined(RENDERDOC_PLATFORM_ANDROID) || defined(RENDERDOC_PLATFORM_GGP) || \
|
||||
defined(RENDERDOC_PLATFORM_SWITCH)
|
||||
defined(RENDERDOC_PLATFORM_ANDROID) || defined(RENDERDOC_PLATFORM_SWITCH)
|
||||
|
||||
#define RENDERDOC_EXPORT_API __attribute__((visibility("default"), used))
|
||||
#define RENDERDOC_IMPORT_API
|
||||
|
||||
@@ -173,20 +173,6 @@ inline const WindowingData CreateWaylandWindowingData(wl_display *display, wl_su
|
||||
return ret;
|
||||
}
|
||||
|
||||
DOCUMENT(R"(Create a :class:`WindowingData` for a GGP application.
|
||||
|
||||
:return: A :class:`WindowingData` corresponding to the given system.
|
||||
:rtype: WindowingData
|
||||
)");
|
||||
inline const WindowingData CreateGgpWindowingData()
|
||||
{
|
||||
WindowingData ret = {};
|
||||
|
||||
ret.system = WindowingSystem::GGP;
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
DOCUMENT(R"(Create a :class:`WindowingData` for an Android ``ANativeWindow`` handle.
|
||||
|
||||
:param ANativeWindow window: The native ``ANativeWindow`` handle for this window.
|
||||
|
||||
@@ -116,7 +116,6 @@ rdcstr DoStringise(const WindowingSystem &el)
|
||||
STRINGISE_ENUM_CLASS(XCB);
|
||||
STRINGISE_ENUM_CLASS(Android);
|
||||
STRINGISE_ENUM_CLASS(MacOS);
|
||||
STRINGISE_ENUM_CLASS(GGP);
|
||||
STRINGISE_ENUM_CLASS(Wayland);
|
||||
}
|
||||
END_ENUM_STRINGISE();
|
||||
|
||||
@@ -4490,10 +4490,6 @@ DOCUMENT(R"(Specifies a windowing system to use for creating an output window.
|
||||
The windowing data refers to a MacOS / OS X NSView & CALayer that is Metal/GL compatible.
|
||||
See :func:`CreateMacOSWindowingData`.
|
||||
|
||||
.. data:: GGP
|
||||
|
||||
The windowing data refers to an GGP surface. See :func:`CreateGgpWindowingData`.
|
||||
|
||||
.. data:: Wayland
|
||||
|
||||
The windowing data refers to an Wayland window. See :func:`CreateWaylandWindowingData`.
|
||||
@@ -4507,7 +4503,6 @@ enum class WindowingSystem : uint32_t
|
||||
XCB,
|
||||
Android,
|
||||
MacOS,
|
||||
GGP,
|
||||
Wayland,
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user