Serenity Operating System
at master 37 lines 1.0 kB view raw
1/* 2 * Copyright (c) 2022, Stephan Unverwerth <s.unverwerth@serenityos.org> 3 * 4 * SPDX-License-Identifier: BSD-2-Clause 5 */ 6 7#include <LibVirtGPU/Image.h> 8 9namespace VirtGPU { 10 11Image::Image(void const* ownership_token, GPU::PixelFormat const& pixel_format, u32 width, u32 height, u32 depth, u32 max_levels) 12 : GPU::Image(ownership_token, pixel_format, width, height, depth, max_levels) 13{ 14 dbgln("VirtGPU::Image::Image(): unimplemented"); 15} 16 17void Image::regenerate_mipmaps() 18{ 19 dbgln("VirtGPU::Image::regenerate_mipmaps(): unimplemented"); 20} 21 22void Image::write_texels(u32, Vector3<i32> const&, void const*, GPU::ImageDataLayout const&) 23{ 24 dbgln("VirtGPU::Image::write_texels(): unimplemented"); 25} 26 27void Image::read_texels(u32, Vector3<i32> const&, void*, GPU::ImageDataLayout const&) const 28{ 29 dbgln("VirtGPU::Image::read_texels(): unimplemented"); 30} 31 32void Image::copy_texels(GPU::Image const&, u32, Vector3<u32> const&, Vector3<u32> const&, u32, Vector3<u32> const&) 33{ 34 dbgln("VirtGPU::Image::copy_texels(): unimplemented"); 35} 36 37}