diff --git a/src/system/boot/arch/arm/arch_framebuffer.h b/src/system/boot/arch/arm/arch_framebuffer.h index 6057d0f7ac..df71f0ec67 100644 --- a/src/system/boot/arch/arm/arch_framebuffer.h +++ b/src/system/boot/arch/arm/arch_framebuffer.h @@ -39,12 +39,17 @@ public: virtual addr_t Base() { return fBase; }; + int Width() { return fCurrentWidth; }; + int Height() { return fCurrentHeight; }; + int Depth() { return fCurrentDepth; }; + int BytesPerRow() { return fCurrentBytesPerRow; }; + protected: addr_t fBase; -private: int fCurrentWidth; int fCurrentHeight; int fCurrentDepth; + int fCurrentBytesPerRow; };