mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-07 23:45:12 +00:00
gl: Implement multisampled image creation
This commit is contained in:
parent
82981384d5
commit
2a4bd6a7fc
7 changed files with 65 additions and 0 deletions
15
rpcs3/Emu/RSX/GL/GLResolveHelper.cpp
Normal file
15
rpcs3/Emu/RSX/GL/GLResolveHelper.cpp
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
#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
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue