summaryrefslogtreecommitdiffhomepage
path: root/dev/Modules/WSGL/WSGL.h
diff options
context:
space:
mode:
authorAmlal EL Mahrouss. <113760121+amlel-el-mahrouss@users.noreply.github.com>2024-11-29 22:19:00 +0100
committerGitHub <noreply@github.com>2024-11-29 22:19:00 +0100
commitb2588beae1dceeb0a0c5e95976874c6d6d53c703 (patch)
treefc2f1e9fa9232693785452d4a1e887ff06d36b6a /dev/Modules/WSGL/WSGL.h
parent8e42fab37245bb27786191600d4a3dc39783eece (diff)
parent65a138dde55e69cf5292c0601f37d023003e74e2 (diff)
Merge pull request #5 from ELMH-Group/unstable
Unstable -> Master
Diffstat (limited to 'dev/Modules/WSGL/WSGL.h')
-rw-r--r--dev/Modules/WSGL/WSGL.h35
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 59cf6f5c..00000000
--- a/dev/Modules/WSGL/WSGL.h
+++ /dev/null
@@ -1,35 +0,0 @@
-/* -------------------------------------------
-
- Copyright (C) 2024, EL Mahrouss Logic, 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