1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 15:47:44 +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:
Jelle Raaijmakers 2022-09-04 19:56:00 +02:00 committed by Linus Groh
parent 1d36bfdac1
commit eb81b66b4e
4 changed files with 11 additions and 11 deletions

View file

@ -905,7 +905,7 @@ void GLContext::gl_point_size(GLfloat size)
void GLContext::present()
{
m_rasterizer->blit_color_buffer_to(*m_frontbuffer);
m_rasterizer->blit_from_color_buffer(*m_frontbuffer);
}
void GLContext::sync_device_config()