1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 22:57:44 +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>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
@ -8,6 +9,8 @@
#include <AK/DistinctNumeric.h>
namespace VirtGPU {
AK_TYPEDEF_DISTINCT_ORDERED_ID(u32, ObjectHandle);
AK_TYPEDEF_DISTINCT_ORDERED_ID(u32, ResourceID);
@ -208,3 +211,5 @@ enum class ShaderType : u32 {
};
}
}