LibGL+LibGPU+LibSoftGPU: Rename blit_color_buffer_to

This makes it consistent with our other `blit_from_color_buffer` and
paves the way for a third method that will be introduced in one of the
next commits.
This commit is contained in:
Jelle Raaijmakers 2022-09-04 19:56:00 +02:00 committed by Linus Groh
commit eb81b66b4e
Notes: sideshowbarker 2024-07-17 07:15:49 +09:00
4 changed files with 11 additions and 11 deletions

View file

@ -47,7 +47,7 @@ public:
virtual void clear_color(FloatVector4 const&) = 0;
virtual void clear_depth(DepthType) = 0;
virtual void clear_stencil(StencilType) = 0;
virtual void blit_color_buffer_to(Gfx::Bitmap& target) = 0;
virtual void blit_from_color_buffer(Gfx::Bitmap& target) = 0;
virtual void blit_from_color_buffer(void*, Vector2<i32> offset, GPU::ImageDataLayout const&) = 0;
virtual void blit_from_depth_buffer(void*, Vector2<i32> offset, GPU::ImageDataLayout const&) = 0;
virtual void blit_to_color_buffer_at_raster_position(void const*, GPU::ImageDataLayout const&) = 0;