mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-03-23 21:55:30 +01:00
13 lines
262 B
C++
13 lines
262 B
C++
#include "stdafx.h"
|
|
#include "Emu/Memory/Memory.h"
|
|
#include "Emu/System.h"
|
|
|
|
#include "GSManager.h"
|
|
#include "GSRender.h"
|
|
|
|
|
|
draw_context_t GSFrameBase::new_context()
|
|
{
|
|
return std::shared_ptr<void>(make_context(), [this](void* ctxt) { delete_context(ctxt); });
|
|
}
|