| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| | |
Fix directory check when exporting project
|
| |
| |
| |
| | |
Fix #26702
|
|\ \
| | |
| | | |
Update libwebsockets to 3.1, fix IPv6 issues
|
| | |
| | |
| | |
| | |
| | |
| | | |
OpenBSD does not support dual stacking, disabling IPv6 for now.
Will possibly come back if/when we get websocket running using our own
NetSocket class.
|
| | |
| | |
| | |
| | | |
This was enabled by default on some systems (e.g. Windows).
|
| | | |
|
| | | |
|
| | | |
|
|\ \ \
| |_|/
|/| | |
Make theme changing no longer requires restart to be fully applied
|
| | | |
|
|\ \ \
| | | |
| | | | |
Fix inspector plugin
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Use GCC builtins for bswap as compiler can then emit these via insn
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Using current macros, one get for:
static inline int BSWAP32(int x) {
return ((x << 24) | ((x << 8) & 0x00FF0000) | ((x >> 8) & 0x0000FF00) | (x >> 24));
}
int main(int argc, char **argv)
{
return BSWAP32(argc);
}
main:
.LFB1:
.cfi_startproc
movl %edi, %eax
movl %edi, %edx
sarl $24, %edx
sall $24, %eax
orl %edx, %eax
movl %edi, %edx
sarl $8, %edi
sall $8, %edx
andl $65280, %edi
andl $16711680, %edx
orl %edx, %eax
orl %edi, %eax
ret
while using:
int main(int argc, char **argv)
{
return __builtin_bswap32(argc);
}
one gets:
main:
.LFB0:
.cfi_startproc
movl %edi, %eax
bswap %eax
ret
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Disable driver fallback to GLES2 by default
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
GLES2 is not designed to be a drop-in replacement for the GLES3 backend,
so the fallback mode has to be used knowingly. It *can* make sense for
simple projects which make sure to handle the differences between both
rendering backends, but most users should stick to one supported backend.
By making it opt-in, we can now use this parameter to define whether to
export ETC textures to Android and iOS when using GLES3 + Fallback.
When using GLES3 without Fallback on Android, set the proper min GLES
version in the AndroidManifest.
Also made the option boolean and renamed it for clarity and to avoid
conflict with the previous String option (which would always evaluate as
"true" otherwise).
Fixes #26569.
|
|\ \ \ \ \ \
| |_|_|/ / /
|/| | | | | |
Update the server platform's `detect.py` to match x11's
|
| | |/ / /
| |/| | |
| | | | |
| | | | |
| | | | | |
This adds support for LTO, UBSAN/ASAN/LSAN, debugging symbols options
and `optimize=size` in the `server` platform.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Replace usage of __bswap_16 with BSWAP16 (#25714).
|
| |/ / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Fix #25639 by not shifting a negative value.
|
| |/ / / / |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
If it needs to be hardcoded (for the sake of reproducible builds),
it should be together with the other hardcoded version info.
And yeah, two months in, let's move to 2019.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Mono: Fix array field being assigned MonoArray** instead of MonoArray*
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Fixes #17601
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Fix #25641 by not shifting a negative value.
|
| | |/ / / /
| |/| | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Check cursor line and column
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Added a trivial check if cursor.line and cursor.column are valid.
Fix #26245
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Fixing misleading error message when trying to export
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
This patch fixes the misleading error message when users
try to "export all" into an invalid destination path.
Closes #26539
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
AssetLib: convert video thumbnails to RGBA8
|
| | |_|/ / / / /
| |/| | | | | |
| | | | | | | |
| | | | | | | | |
Image::blend_rect only works with images that have the same format.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
makerst: make vararg methods look the same as in editor help
|
| | |_|_|_|_|_|/
| |/| | | | | | |
|
|\ \ \ \ \ \ \ \
| |_|/ / / / / /
|/| | | | | | | |
Fix attaching script after removing one
|
| | |_|_|_|/ /
| |/| | | | | |
|
|\ \ \ \ \ \ \
| |_|/ / / / /
|/| | | | | | |
Fix FileSystem dock's item view button starting with the wrong icon
|
|/ / / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Disable coord navigation buttons in TileSet editor when no texture is selected
|
| |/ / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Pause AudioStreamPlayer on SceneTree pause
|
| |/ / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Remove "TODO" instances in the docs
|
| |/ / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Fix HTML5 quick preview URL
|
| |/ / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Fixed Tileset preview stretching textures
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| |_|/ / / / /
|/| | | | | | |
Fix general issues with filesystem-related UI components in the editor
|