1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:17:45 +00:00

LibGPU+LibSoftGPU: Move RasterPosition into its own header in LibGPU

This commit is contained in:
Stephan Unverwerth 2022-03-27 15:24:10 +02:00 committed by Andreas Kling
parent e416380826
commit 8f359bf758
3 changed files with 28 additions and 13 deletions

View file

@ -1251,7 +1251,7 @@ void Device::set_stencil_configuration(GPU::Face face, GPU::StencilConfiguration
m_stencil_configuration[face] = stencil_configuration;
}
void Device::set_raster_position(RasterPosition const& raster_position)
void Device::set_raster_position(GPU::RasterPosition const& raster_position)
{
m_raster_position = raster_position;
}