summaryrefslogtreecommitdiff
path: root/SharedGraphics/GraphicsBitmap.h
blob: 861e0d4170007b06d71458cd96dcf48c8caed4dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#pragma once

#include "Color.h"
#include "Rect.h"
#include "Size.h"
#include <AK/Retainable.h>
#include <AK/RetainPtr.h>
#include <AK/AKString.h>

#ifdef KERNEL
#include "Process.h"
#endif

class GraphicsBitmap : public Retainable<GraphicsBitmap> {
public:
#ifdef KERNEL
    static RetainPtr<GraphicsBitmap> create(Process&, const Size&);
#endif
    static RetainPtr<GraphicsBitmap> create_wrapper(const Size&, RGBA32*);
    static RetainPtr<GraphicsBitmap> load_from_file(const String& path, const Size&);
    ~GraphicsBitmap();

    RGBA32* scanline(int y);
    const RGBA32* scanline(int y) const;

    Rect rect() const { return { {}, m_size }; }
    Size size() const { return m_size; }
    int width() const { return m_size.width(); }
    int height() const { return m_size.height(); }
    size_t pitch() const { return m_pitch; }

#ifdef KERNEL
    Region* client_region() { return m_client_region; }
    Region* server_region() { return m_server_region; }
#endif

private:
#ifdef KERNEL
    GraphicsBitmap(Process&, const Size&);
#endif
    GraphicsBitmap(const Size&, RGBA32*);

    Size m_size;
    RGBA32* m_data { nullptr };
    size_t m_pitch { 0 };

#ifdef USERLAND
    bool m_mmaped { false };
#endif

#ifdef KERNEL
    WeakPtr<Process> m_client_process;
    Region* m_client_region { nullptr };
    Region* m_server_region { nullptr };
#endif
};

inline RGBA32* GraphicsBitmap::scanline(int y)
{
    return reinterpret_cast<RGBA32*>((((byte*)m_data) + (y * m_pitch)));
}

inline const RGBA32* GraphicsBitmap::scanline(int y) const
{
    return reinterpret_cast<const RGBA32*>((((const byte*)m_data) + (y * m_pitch)));
}