rsx::io_buffer cleanup

This commit is contained in:
kd-11 2023-09-14 21:31:20 +03:00 committed by kd-11
parent 725bad0963
commit a95e87d14d
3 changed files with 2 additions and 9 deletions

View File

@ -27,13 +27,6 @@ namespace rsx
public:
io_buffer() = default;
io_buffer(const io_buffer& that)
{
m_ptr = that.m_ptr;
m_size = that.m_size;
m_allocator = that.m_allocator;
}
template <SpanLike T>
io_buffer(const T& container)
{

View File

@ -553,6 +553,7 @@
<ClInclude Include="Emu\RSX\Common\buffer_stream.hpp" />
<ClInclude Include="Emu\RSX\Common\tiled_dma_copy.hpp" />
<ClInclude Include="Emu\RSX\Common\expected.hpp" />
<ClInclude Include="Emu\RSX\Common\io_buffer.h" />
<ClInclude Include="Emu\RSX\Common\profiling_timer.hpp" />
<ClInclude Include="Emu\RSX\Common\ranged_map.hpp" />
<ClInclude Include="Emu\RSX\Common\simple_array.hpp" />
@ -612,7 +613,6 @@
<ClInclude Include="Emu\vfs_config.h" />
<ClInclude Include="Loader\disc.h" />
<ClInclude Include="Loader\mself.hpp" />
<ClInclude Include="io_buffer.h" />
<ClInclude Include="util\atomic.hpp" />
<ClInclude Include="util\bless.hpp" />
<ClInclude Include="util\image_sink.h" />

View File

@ -2335,7 +2335,7 @@
<ClInclude Include="Emu\NP\upnp_config.h">
<Filter>Emu\NP</Filter>
</ClInclude>
<ClInclude Include="io_buffer.h">
<ClInclude Include="Emu\RSX\Common\io_buffer.h">
<Filter>Emu\GPU\RSX\Common</Filter>
</ClInclude>
<ClInclude Include="Emu\RSX\Common\tiled_dma_copy.hpp">