diff options
| author | Amlal EL Mahrouss <amlalelmahrouss@icloud.com> | 2024-11-28 18:29:13 +0100 |
|---|---|---|
| committer | Amlal EL Mahrouss <amlalelmahrouss@icloud.com> | 2024-11-28 18:29:13 +0100 |
| commit | 49d8bce2413cc9497214cca88584917d9e9088c1 (patch) | |
| tree | 0fc7d80bdfc94d7518cf6452e6c21db114e42eba /dev/Modules/WSGL | |
| parent | 3e9f5148faefb6ce73d6d0740504a4e26908cdfd (diff) | |
IMP: Improve Kernel architecture.
Signed-off-by: Amlal EL Mahrouss <amlalelmahrouss@icloud.com>
Diffstat (limited to 'dev/Modules/WSGL')
| -rw-r--r-- | dev/Modules/WSGL/WSGL.h | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/dev/Modules/WSGL/WSGL.h b/dev/Modules/WSGL/WSGL.h deleted file mode 100644 index b1dc8bb5..00000000 --- a/dev/Modules/WSGL/WSGL.h +++ /dev/null @@ -1,35 +0,0 @@ -/* -------------------------------------------
-
- Copyright (C) 2024, ELMH Group, all rights reserved.
-
-------------------------------------------- */
-
-#pragma once
-
-#include <NewKit/Defines.h>
-#include <Modules/FB/WS.h>
-
-namespace WS
-{
- /// @brief GPU texture class.
- class WSWindowTexture final
- {
- public:
- explicit WSWindowTexture() = default;
- ~WSWindowTexture() = default;
-
- ZKA_COPY_DEFAULT(WSWindowTexture);
-
- VoidPtr InputData{nullptr};
- VoidPtr ProcessUnit{nullptr};
- BOOL* IsDone{nullptr};
-
- const BOOL TryIsDone()
- {
- if (IsDone && *IsDone)
- return YES;
-
- return NO;
- }
- };
-} // namespace WS
|
