mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
16 lines
309 B
C++
16 lines
309 B
C++
|
|
#include "stdafx.h"
|
||
|
|
#include "GLResolveHelper.h"
|
||
|
|
|
||
|
|
namespace gl
|
||
|
|
{
|
||
|
|
void resolve_image(gl::command_context& cmd, gl::viewable_image* dst, gl::viewable_image* src)
|
||
|
|
{
|
||
|
|
// TODO
|
||
|
|
}
|
||
|
|
|
||
|
|
void unresolve_image(gl::command_context& cmd, gl::viewable_image* dst, gl::viewable_image* src)
|
||
|
|
{
|
||
|
|
// TODO
|
||
|
|
}
|
||
|
|
}
|