forked from godotengine/godot
-
Notifications
You must be signed in to change notification settings - Fork 2
Build and test fixes. #3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
zorbathut
wants to merge
22
commits into
migeran:libgodot_44_stable
from
zorbathut:pr/migeran_libgodot_44_stable/ci
Closed
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
1b0bc67
Fix: Shadowed variable warning.
zorbathut 4830c00
Fix: Accidentally introduced double-endif.
zorbathut 3b9d331
Fix: Incorrect ref error-checking.
zorbathut 12e7ddf
Fix: Missing virtual destructor on class with virtual functions.
zorbathut 8b9c74f
Fix: Variable shadowing caused by new MethodInfo::hash.
zorbathut abfefcd
Fix: Missing headers in Windows.
zorbathut 1ecd27d
Fix: Incorrect class name.
zorbathut 48058f5
Fix: Incorrect #define boolean logic.
zorbathut 51f4fc2
Fix: Missing registration for base class.
zorbathut c0ac53b
Update docs.
zorbathut e16eb64
Fix: Missing header in Android.
zorbathut 4407d67
Fix: Windows surface teardown syntax.
zorbathut a4ae979
Revert added parameter to set_boot_image.
zorbathut 52b9fd5
Fix: Missed variable name change.
zorbathut 59cb90c
Fix: Ref nullification syntax.
zorbathut 7e0300d
Fix: Incorrect function name.
zorbathut f0ec0d9
Fix: Incorrect class name.
zorbathut 201807c
Fix: A few things that should have been function calls.
zorbathut 1b00cb7
Add a default to fix a gcc warning.
zorbathut 9ddc304
Fix: Windows headers polluting global defines and breaking RenderingD…
zorbathut a17d10a
Changes to get libgodot working on linux
nonameentername e3aad0f
Formatting fixes.
zorbathut File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,78 @@ | ||
| <?xml version="1.0" encoding="UTF-8" ?> | ||
| <class name="DisplayServerEmbedded" inherits="DisplayServer" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../class.xsd"> | ||
| <brief_description> | ||
| </brief_description> | ||
| <description> | ||
| </description> | ||
| <tutorials> | ||
| </tutorials> | ||
| <methods> | ||
| <method name="get_singleton" qualifiers="static"> | ||
| <return type="DisplayServerEmbedded" /> | ||
| <description> | ||
| </description> | ||
| </method> | ||
| <method name="key"> | ||
| <return type="void" /> | ||
| <param index="0" name="key" type="int" enum="Key" /> | ||
| <param index="1" name="char" type="int" /> | ||
| <param index="2" name="unshifted" type="int" enum="Key" /> | ||
| <param index="3" name="physical" type="int" enum="Key" /> | ||
| <param index="4" name="modifiers" type="int" enum="KeyModifierMask" is_bitfield="true" /> | ||
| <param index="5" name="pressed" type="bool" /> | ||
| <param index="6" name="window" type="int" default="0" /> | ||
| <description> | ||
| </description> | ||
| </method> | ||
| <method name="resize_window"> | ||
| <return type="void" /> | ||
| <param index="0" name="size" type="Vector2i" /> | ||
| <param index="1" name="id" type="int" /> | ||
| <description> | ||
| </description> | ||
| </method> | ||
| <method name="set_content_scale"> | ||
| <return type="void" /> | ||
| <param index="0" name="content_scale" type="float" /> | ||
| <description> | ||
| </description> | ||
| </method> | ||
| <method name="set_native_surface" qualifiers="static"> | ||
| <return type="void" /> | ||
| <param index="0" name="native_surface" type="RenderingNativeSurface" /> | ||
| <description> | ||
| </description> | ||
| </method> | ||
| <method name="touch_drag"> | ||
| <return type="void" /> | ||
| <param index="0" name="idx" type="int" /> | ||
| <param index="1" name="prev_x" type="int" /> | ||
| <param index="2" name="prev_y" type="int" /> | ||
| <param index="3" name="x" type="int" /> | ||
| <param index="4" name="y" type="int" /> | ||
| <param index="5" name="pressure" type="float" /> | ||
| <param index="6" name="tilt" type="Vector2" /> | ||
| <param index="7" name="window" type="int" /> | ||
| <description> | ||
| </description> | ||
| </method> | ||
| <method name="touch_press"> | ||
| <return type="void" /> | ||
| <param index="0" name="idx" type="int" /> | ||
| <param index="1" name="x" type="int" /> | ||
| <param index="2" name="y" type="int" /> | ||
| <param index="3" name="pressed" type="bool" /> | ||
| <param index="4" name="double_click" type="bool" /> | ||
| <param index="5" name="window" type="int" /> | ||
| <description> | ||
| </description> | ||
| </method> | ||
| <method name="touches_canceled"> | ||
| <return type="void" /> | ||
| <param index="0" name="idx" type="int" /> | ||
| <param index="1" name="window" type="int" /> | ||
| <description> | ||
| </description> | ||
| </method> | ||
| </methods> | ||
| </class> |
This file contains hidden or 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 hidden or 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,53 @@ | ||
| <?xml version="1.0" encoding="UTF-8" ?> | ||
| <class name="GodotInstance" inherits="Object" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../class.xsd"> | ||
| <brief_description> | ||
| </brief_description> | ||
| <description> | ||
| </description> | ||
| <tutorials> | ||
| </tutorials> | ||
| <methods> | ||
| <method name="execute"> | ||
| <return type="void" /> | ||
| <param index="0" name="callback" type="Callable" /> | ||
| <param index="1" name="async" type="bool" /> | ||
| <description> | ||
| </description> | ||
| </method> | ||
| <method name="focus_in"> | ||
| <return type="void" /> | ||
| <description> | ||
| </description> | ||
| </method> | ||
| <method name="focus_out"> | ||
| <return type="void" /> | ||
| <description> | ||
| </description> | ||
| </method> | ||
| <method name="is_started"> | ||
| <return type="bool" /> | ||
| <description> | ||
| </description> | ||
| </method> | ||
| <method name="iteration"> | ||
| <return type="bool" /> | ||
| <description> | ||
| </description> | ||
| </method> | ||
| <method name="pause"> | ||
| <return type="void" /> | ||
| <description> | ||
| </description> | ||
| </method> | ||
| <method name="resume"> | ||
| <return type="void" /> | ||
| <description> | ||
| </description> | ||
| </method> | ||
| <method name="start"> | ||
| <return type="bool" /> | ||
| <description> | ||
| </description> | ||
| </method> | ||
| </methods> | ||
| </class> |
This file contains hidden or 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,9 @@ | ||
| <?xml version="1.0" encoding="UTF-8" ?> | ||
| <class name="RenderingNativeSurface" inherits="RefCounted" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../class.xsd"> | ||
| <brief_description> | ||
| </brief_description> | ||
| <description> | ||
| </description> | ||
| <tutorials> | ||
| </tutorials> | ||
| </class> |
This file contains hidden or 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,17 @@ | ||
| <?xml version="1.0" encoding="UTF-8" ?> | ||
| <class name="RenderingNativeSurfaceVulkan" inherits="RenderingNativeSurface" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../class.xsd"> | ||
| <brief_description> | ||
| </brief_description> | ||
| <description> | ||
| </description> | ||
| <tutorials> | ||
| </tutorials> | ||
| <methods> | ||
| <method name="create" qualifiers="static"> | ||
| <return type="RenderingNativeSurfaceVulkan" /> | ||
| <param index="0" name="vulkan_surface" type="const void*" /> | ||
| <description> | ||
| </description> | ||
| </method> | ||
| </methods> | ||
| </class> |
This file contains hidden or 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,18 @@ | ||
| <?xml version="1.0" encoding="UTF-8" ?> | ||
| <class name="RenderingNativeSurfaceWayland" inherits="RenderingNativeSurface" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../class.xsd"> | ||
| <brief_description> | ||
| </brief_description> | ||
| <description> | ||
| </description> | ||
| <tutorials> | ||
| </tutorials> | ||
| <methods> | ||
| <method name="create" qualifiers="static"> | ||
| <return type="RenderingNativeSurfaceWayland" /> | ||
| <param index="0" name="window" type="const void*" /> | ||
| <param index="1" name="display" type="const void*" /> | ||
| <description> | ||
| </description> | ||
| </method> | ||
| </methods> | ||
| </class> |
This file contains hidden or 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,18 @@ | ||
| <?xml version="1.0" encoding="UTF-8" ?> | ||
| <class name="RenderingNativeSurfaceX11" inherits="RenderingNativeSurface" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../class.xsd"> | ||
| <brief_description> | ||
| </brief_description> | ||
| <description> | ||
| </description> | ||
| <tutorials> | ||
| </tutorials> | ||
| <methods> | ||
| <method name="create" qualifiers="static"> | ||
| <return type="RenderingNativeSurfaceX11" /> | ||
| <param index="0" name="window" type="const void*" /> | ||
| <param index="1" name="display" type="const void*" /> | ||
| <description> | ||
| </description> | ||
| </method> | ||
| </methods> | ||
| </class> |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is fine to avoid name collision.