forked from PCSX2/pcsx2
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
77d37de
commit 502b6f5
Showing
72 changed files
with
6,981 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
/* PCSX2 - PS2 Emulator for PCs | ||
* Copyright (C) 2002-2021 PCSX2 Dev Team | ||
* | ||
* PCSX2 is free software: you can redistribute it and/or modify it under the terms | ||
* of the GNU Lesser General Public License as published by the Free Software Found- | ||
* ation, either version 3 of the License, or (at your option) any later version. | ||
* | ||
* PCSX2 is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; | ||
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR | ||
* PURPOSE. See the GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License along with PCSX2. | ||
* If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include "common/PrecompiledHeader.h" | ||
|
||
#include "common/Console.h" | ||
#include "ContextRetroGL.h" | ||
#include <optional> | ||
#include <vector> | ||
#include "common/WindowInfo.h" | ||
#include "GS/Renderers/Common/GSDevice.h" | ||
#include "GS/GSVector.h" | ||
|
||
#include <libretro.h> | ||
extern retro_video_refresh_t video_cb; | ||
extern retro_hw_render_callback hw_render; | ||
|
||
namespace GL | ||
{ | ||
ContextRetroGL::ContextRetroGL(const WindowInfo& wi) | ||
: Context(wi) | ||
{ | ||
} | ||
|
||
ContextRetroGL::~ContextRetroGL() | ||
{ | ||
} | ||
|
||
std::unique_ptr<Context> ContextRetroGL::Create(const WindowInfo& wi, gsl::span<const Version> versions_to_try) | ||
{ | ||
std::unique_ptr<ContextRetroGL> context = std::make_unique<ContextRetroGL>(wi); | ||
return context; | ||
} | ||
|
||
void* ContextRetroGL::GetProcAddress(const char* name) | ||
{ | ||
return reinterpret_cast<void*>(hw_render.get_proc_address(name)); | ||
} | ||
|
||
bool ContextRetroGL::ChangeSurface(const WindowInfo& new_wi) | ||
{ | ||
return true; | ||
} | ||
|
||
void ContextRetroGL::ResizeSurface(u32 new_surface_width /*= 0*/, u32 new_surface_height /*= 0*/) | ||
{ | ||
m_wi.surface_width = new_surface_width; | ||
m_wi.surface_height = new_surface_height; | ||
} | ||
|
||
bool ContextRetroGL::SwapBuffers() | ||
{ | ||
if(g_gs_device->GetCurrent()) | ||
video_cb(RETRO_HW_FRAME_BUFFER_VALID, g_gs_device->GetCurrent()->GetWidth(), g_gs_device->GetCurrent()->GetHeight(), 0); | ||
else | ||
video_cb(NULL, 0, 0, 0); | ||
return true; | ||
} | ||
|
||
bool ContextRetroGL::MakeCurrent() | ||
{ | ||
return true; | ||
} | ||
|
||
bool ContextRetroGL::DoneCurrent() | ||
{ | ||
return true; | ||
} | ||
|
||
bool ContextRetroGL::SetSwapInterval(s32 interval) | ||
{ | ||
return true; | ||
} | ||
|
||
std::unique_ptr<Context> ContextRetroGL::CreateSharedContext(const WindowInfo& wi) | ||
{ | ||
std::unique_ptr<ContextRetroGL> context = std::make_unique<ContextRetroGL>(wi); | ||
return context; | ||
} | ||
|
||
} // namespace GL |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
/* PCSX2 - PS2 Emulator for PCs | ||
* Copyright (C) 2002-2021 PCSX2 Dev Team | ||
* | ||
* PCSX2 is free software: you can redistribute it and/or modify it under the terms | ||
* of the GNU Lesser General Public License as published by the Free Software Found- | ||
* ation, either version 3 of the License, or (at your option) any later version. | ||
* | ||
* PCSX2 is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; | ||
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR | ||
* PURPOSE. See the GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License along with PCSX2. | ||
* If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#pragma once | ||
|
||
#include "common/GL/Context.h" | ||
|
||
namespace GL | ||
{ | ||
class ContextRetroGL : public Context | ||
{ | ||
public: | ||
ContextRetroGL(const WindowInfo& wi); | ||
~ContextRetroGL() override; | ||
|
||
static std::unique_ptr<Context> Create(const WindowInfo& wi, gsl::span<const Version> versions_to_try); | ||
|
||
void* GetProcAddress(const char* name) override; | ||
virtual bool ChangeSurface(const WindowInfo& new_wi) override; | ||
virtual void ResizeSurface(u32 new_surface_width = 0, u32 new_surface_height = 0) override; | ||
bool SwapBuffers() override; | ||
bool MakeCurrent() override; | ||
bool DoneCurrent() override; | ||
bool SetSwapInterval(s32 interval) override; | ||
virtual std::unique_ptr<Context> CreateSharedContext(const WindowInfo& wi) override; | ||
}; | ||
|
||
} // namespace GL |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,7 @@ | |
|
||
#pragma once | ||
|
||
#include <cstdio> | ||
#include <vector> | ||
#include <cstdio> | ||
#include "common/Pcsx2Types.h" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.