mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 07:47:35 +00:00
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:
parent
1d36bfdac1
commit
eb81b66b4e
4 changed files with 11 additions and 11 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue