-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
better async modes and renderer test
- Loading branch information
Showing
25 changed files
with
3,000 additions
and
389 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#include <includes.hpp> | ||
|
||
/* | ||
https://github.com/microsoft/cascadia-code | ||
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 | ||
xxd -i .\cascadia_mono_semibold_12.PNG > cascadia_atlas.hpp | ||
xxd -i .\cascadia_mono_semibold_12.json > cascadia_map.hpp | ||
*/ | ||
|
||
#include "cascadia_atlas.hpp" | ||
#include "cascadia_map.hpp" | ||
|
||
namespace tool::nui::cascadia { | ||
void* GetCascadiaFont() { | ||
return __cascadia_mono_semibold_12_PNG; | ||
} | ||
size_t GetCascadiaFontLen() { | ||
return __cascadia_mono_semibold_12_PNG_len; | ||
} | ||
void* GetCascadiaMap() { | ||
return __cascadia_mono_semibold_12_json; | ||
} | ||
size_t GetCascadiaMapLen() { | ||
return __cascadia_mono_semibold_12_json_len; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#pragma once | ||
|
||
namespace tool::nui::cascadia { | ||
void* GetCascadiaFont(); | ||
size_t GetCascadiaFontLen(); | ||
void* GetCascadiaMap(); | ||
size_t GetCascadiaMapLen(); | ||
} |
Oops, something went wrong.