summaryrefslogtreecommitdiff
path: root/SharedGraphics/GraphicsBitmap.cpp
AgeCommit message (Expand)Author
2019-07-18LibDraw: Introduce (formerly known as SharedGraphics.)Andreas Kling
2019-07-08StringView: Rename characters() to characters_without_null_termination().Andreas Kling
2019-07-03AK: Rename the common integer typedefs to make it obvious what they are.Andreas Kling
2019-06-21AK: Rename RetainPtr => RefPtr and Retained => NonnullRefPtr.Andreas Kling
2019-06-10GraphicsBitmap: Add a fill(Color) helper.Andreas Kling
2019-06-07SharedGraphics: Run clang-format on everything.Andreas Kling
2019-06-03StringViewize a bunch of things -- mostly LibGUIRobin Burchell
2019-05-19LibC: Add mmap_with_name() that names the allocation immediately.Andreas Kling
2019-05-06GraphicsBitmap: Add a new "Indexed8" format that uses a 256-entry palette.Andreas Kling
2019-05-06Make sure all GraphicsBitmap scanlines are 16-byte aligned.Andreas Kling
2019-04-30PNGLoader: Tag the decoded bitmap with the source PNG path.Andreas Kling
2019-04-26GraphicsBitmap: munmap() pixels on destruction of self-allocating bitmaps.Andreas Kling
2019-04-03GraphicsBitmap: Use MappedFile.Andreas Kling
2019-03-22Use the PNG loader for all images, and get rid of the .rgb files.Andreas Kling
2019-03-17Add client-side double buffering of window backing stores.Andreas Kling
2019-03-08Add a C++ helper class for working with shared buffers.Andreas Kling
2019-02-25AK: Add Retained<T>, like RetainPtr, but never null.Andreas Kling
2019-02-19WindowServer: Support windows with alpha channels. And per-WSWindow opacity.Andreas Kling
2019-02-17SharedGraphics: Assign a human-friendly name for mmapped GraphicsBitmap.Andreas Kling
2019-02-17Move WindowServer to userspace.Andreas Kling
2019-02-16SharedGraphics: Rework GraphicsBitmap::create_kernel_only() into create().Andreas Kling
2019-02-16Kernel: Add a simple shared memory API for two processes only.Andreas Kling
2019-02-11WindowServer: Start implementing a menu system.Andreas Kling
2019-02-08SharedGraphics: GraphicsBitmap::load_from_file() should be allowed to fail.Andreas Kling
2019-02-08SharedGraphics: Allocate file-backed kernel GraphcisBitmaps in WindowServer.Andreas Kling
2019-02-07Start working on a simple Launcher app.Andreas Kling
2019-02-05Show the amount of memory in GraphicsBitmaps in /bin/top.Andreas Kling
2019-01-31Big, possibly complete sweep of naming changes.Andreas Kling
2019-01-31Kernel: Make Process a Weakable class.Andreas Kling
2019-01-26WindowServer: Rename WSEvent to WSMessage.Andreas Kling
2019-01-26Refactor GUI rendering model to be two-phased.Andreas Kling
2019-01-24Kernel: Finally stop exposing Region members to the public.Andreas Kling
2019-01-22Kernel: Refactor Region/PageDirectory ownership model.Andreas Kling
2019-01-21WindowServer: Map shared GraphicsBitmaps read-only on the server side.Andreas Kling
2019-01-21Mark the two Regions used GraphicsBitmaps as explicitly shared.Andreas Kling
2019-01-19Make a SharedGraphics directory for classes shared between Kernel and LibGUI.Andreas Kling