mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
20 lines
256 B
C
20 lines
256 B
C
|
|
/*
|
||
|
|
* Copyright (c) 2025, Ladybird contributors
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
|
*/
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <AK/ByteBuffer.h>
|
||
|
|
|
||
|
|
namespace Gfx {
|
||
|
|
|
||
|
|
struct BitmapExportResult {
|
||
|
|
ByteBuffer buffer;
|
||
|
|
int width { 0 };
|
||
|
|
int height { 0 };
|
||
|
|
};
|
||
|
|
|
||
|
|
}
|