1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 23:17:45 +00:00

LibVirtGPU: Move VirGLDemo protocol code into VirtGPU namespace

This commit is contained in:
Stephan Unverwerth 2022-12-21 15:16:19 +01:00 committed by Andreas Kling
parent a95eea5ae2
commit 51ac0d73a3
3 changed files with 18 additions and 3 deletions

View file

@ -1,5 +1,6 @@
/*
* Copyright (c) 2022, Sahan Fernando <sahan.h.fernando@gmail.com>
* Copyright (c) 2022, Stephan Unverwerth <s.unverwerth@serenityos.org>
* Copyright (c) 2022, the SerenityOS developers.
*
* SPDX-License-Identifier: BSD-2-Clause
@ -9,9 +10,10 @@
#include <AK/StringView.h>
#include <AK/Vector.h>
#include <LibVirtGPU/VirGLProtocol.h>
#include <sys/ioctl_numbers.h>
#include "VirGLProtocol.h"
namespace VirtGPU {
class CommandBufferBuilder {
public:
@ -41,3 +43,5 @@ public:
private:
Vector<u32> m_buffer;
};
}