1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 06:37:44 +00:00

LibGL: Implement glGetTexImage

The plumbing was already there in LibGPU, so all that was left was to
implement the API :^)
This commit is contained in:
Jelle Raaijmakers 2022-09-01 13:30:24 +02:00 committed by Andreas Kling
parent 4f69022c32
commit 8ab410a536
6 changed files with 46 additions and 0 deletions

View file

@ -27,6 +27,7 @@ public:
virtual bool is_texture_2d() const override { return true; }
void download_texture_data(GLuint lod, GPU::ImageDataLayout output_layout, GLvoid* pixels);
void upload_texture_data(GLuint lod, GLenum internal_format, GPU::ImageDataLayout input_layout, GLvoid const* pixels);
void replace_sub_texture_data(GLuint lod, GPU::ImageDataLayout input_layout, Vector3<i32> const& output_offset, GLvoid const* pixels);