-
-
Notifications
You must be signed in to change notification settings - Fork 386
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '8.3.0-Dev' into 9.0.0-dev
- Loading branch information
Showing
117 changed files
with
3,381 additions
and
2,364 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -1 +1,2 @@ | ||
--macro lime._internal.macros.DefineMacro.run() | ||
--macro lime._internal.macros.DefineMacro.run() | ||
--macro haxe.macro.Compiler.addMetadata("@:autoBuild(lime._internal.macros.AssetsMacro.embedBytes())", "haxe.io.Bytes") |
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 |
---|---|---|
|
@@ -12,4 +12,4 @@ | |
"Dimensionscape" | ||
], | ||
"classPath": "src" | ||
} | ||
} |
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,21 @@ | ||
#ifndef LIME_SYSTEM_DISPLAY_H | ||
#define LIME_SYSTEM_DISPLAY_H | ||
|
||
#include <math/Rectangle.h> | ||
|
||
namespace lime { | ||
|
||
|
||
class Display { | ||
|
||
|
||
public: | ||
|
||
static void GetSafeAreaInsets (int displayIndex, Rectangle * rect); | ||
|
||
|
||
}; | ||
|
||
} | ||
|
||
#endif |
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,40 @@ | ||
#ifndef LIME_SYSTEM_ORIENTATION_EVENT_H | ||
#define LIME_SYSTEM_ORIENTATION_EVENT_H | ||
|
||
|
||
#include <system/CFFI.h> | ||
#include <system/ValuePointer.h> | ||
|
||
|
||
namespace lime { | ||
|
||
|
||
enum OrientationEventType { | ||
|
||
DISPLAY_ORIENTATION_CHANGE, | ||
DEVICE_ORIENTATION_CHANGE | ||
|
||
}; | ||
|
||
|
||
struct OrientationEvent { | ||
|
||
hl_type* t; | ||
int orientation; | ||
int display; | ||
OrientationEventType type; | ||
|
||
static ValuePointer* callback; | ||
static ValuePointer* eventObject; | ||
|
||
OrientationEvent (); | ||
|
||
static void Dispatch (OrientationEvent* event); | ||
|
||
}; | ||
|
||
|
||
} | ||
|
||
|
||
#endif |
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
Submodule cairo
updated
from b43e7c to 200441
Submodule curl
updated
2226 files
Oops, something went wrong.