diff options
| author | Amlal <amlal@el-mahrouss-logic.com> | 2024-09-27 11:41:44 +0200 |
|---|---|---|
| committer | Amlal <amlal@el-mahrouss-logic.com> | 2024-09-27 11:41:44 +0200 |
| commit | 8db6fc60063757628f92bd1c4d4855775f4ff9e2 (patch) | |
| tree | e27013969dc749bbb8131e24e4171034fdb80f56 /dev/corecg/src | |
| parent | daa4f8c748d290feba8a71e889743a8a3097ad7d (diff) | |
feat&wip: Math API for CG, WiP HAL Paging API.
- NOTE: HAL Paging API is still in wip, issues have to be fixed.
- Moved WM code to corecg driver.
Signed-off-by: Amlal <amlal@el-mahrouss-logic.com>
Diffstat (limited to 'dev/corecg/src')
| -rw-r--r-- | dev/corecg/src/corecg.cxx | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/dev/corecg/src/corecg.cxx b/dev/corecg/src/corecg.cxx new file mode 100644 index 00000000..7158ea62 --- /dev/null +++ b/dev/corecg/src/corecg.cxx @@ -0,0 +1,18 @@ +/* ------------------------------------------- + + Copyright ZKA Technologies. + + FILE: corecg.cxx + PURPOSE: CoreCG Window Manager entrypoint. + +------------------------------------------- */ + +#include <corecg/corecg.hxx> + +/** @brief CoreCG main, ZWM acts a proxy to the Installed GPU Driver. */ +CG::Int32 ModuleMain(CG::Void) +{ + CG::CGDrawDesktopBackground(); + + return 0; +} |
