summaryrefslogtreecommitdiff
path: root/Kernel/Graphics/VirtIOGPU
AgeCommit message (Expand)Author
2021-09-05Kernel: Make copy_{from,to}_user() return KResult and use TRY()Andreas Kling
2021-09-04Kernel/VirtIO: Defer initialization of device out of the constructorLiav A
2021-08-31Kernel/VirtIO: Remove redundant VirtIO word from filenamesLiav A
2021-08-31Kernel/VirtIO: Move everything into the VirtIO namespaceLiav A
2021-08-31Kernel/VirtIO: Remove the m_class_name memberLiav A
2021-08-23Kernel: Rename PCI::DeviceController => PCI::DeviceLiav A
2021-08-22Kernel: Rename ScopedSpinlock => SpinlockLockerAndreas Kling
2021-08-22Kernel: Rename SpinLock => SpinlockAndreas Kling
2021-08-15Kernel: Make Kernel::VMObject allocation functions return KResultOrsin-ack
2021-08-13Kernel: Move VirtIO code into the Bus source folderLiav A
2021-08-06Kernel: Add convenience values to the Memory::Region::Access enumAndreas Kling
2021-08-06Kernel: Rename Process::space() => Process::address_space()Andreas Kling
2021-08-06Kernel: Rename Range => VirtualRangeAndreas Kling
2021-08-06Kernel: Move Kernel/Memory/ code into Kernel::Memory namespaceAndreas Kling
2021-07-27Kernel: Modify the IOCTL API to return KResultBrian Gianforcaro
2021-07-27Kernel: Utilize AK::Userspace<T> in the ioctl interfaceBrian Gianforcaro
2021-07-22Kernel: Consolidate API for creating AnonymousVMObject with given pagesAndreas Kling
2021-07-22Everywhere: Prefer using {:#x} over 0x{:x}Gunnar Beutner
2021-07-21Kernel: VirtIO framebuffer should clamp pending dirty rects if neededTom
2021-07-18Kernel: Clean up VirtIOGPU class interfacesSahan Fernando
2021-07-18Kernel: Replace VirtIOGPU reinterpret casts with AK::BinaryBufferWriterSahan Fernando
2021-07-18Kernel: Improve debug prints for VirtIOGPU device config eventsSahan Fernando
2021-07-18Kernel: Rename VirtIOGPU/VirtIOGPU.cpp to VirtIOGPU/GPU.cppSahan Fernando
2021-07-18Kernel: Put VirtIOGPU related types into a namespaceSahan Fernando
2021-07-18Kernel: Rename Locker => MutexLockerAndreas Kling
2021-07-17Kernel: Rename Lock to MutexAndreas Kling
2021-07-11Kernel: Remove unused header includes in Graphics subtreeBrian Gianforcaro
2021-07-11Kernel: Rename VMObject::clone() => try_clone()Andreas Kling
2021-07-11Kernel: Rename various *VMObject::create*() => try_create()Andreas Kling
2021-07-11Kernel: Remove bogus VMObject resizing in VirtIOGPUAndreas Kling
2021-07-11Kernel: Make various T::class_name() and similar return StringViewAndreas Kling
2021-07-10Kernel: Make VirtIO GPU buffer flipping more spec compliantTom
2021-07-08Kernel: Use range-for wherever possibleDaniel Bertalan
2021-07-04Kernel: Implement buffer flipping for VirtIOGPU framebuffersTom
2021-07-04WindowServer: Implement support for combined buffer flipping + flushingTom
2021-07-03Kernel: Clarify and make it easy to not use raw numbersLiav A
2021-07-03Kernel/Graphics: Assert if trying to initialize with the wrong driverLiav A
2021-07-03Kernel: Simplify graphics initialization somewhatLiav A
2021-06-27WindowServer: Coalesce flushing buffers into one ioctl() callTom
2021-06-27Kernel: Enable additional VirtIO displays only on first resolution setTom
2021-06-27Kernel: Add support for multiple VirtIO GPU outputsTom
2021-06-25Kernel: Add VirtIOGPU graphics deviceSahan Fernando