gl: Implement multisampled image creation

This commit is contained in:
kd-11 2025-02-05 00:13:16 +03:00 committed by kd-11
parent 82981384d5
commit 2a4bd6a7fc
7 changed files with 65 additions and 0 deletions

View 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
}
}