aboutsummaryrefslogtreecommitdiff
path: root/platform
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | | Merge pull request #7880 from bojidar-bg/fix-iphone-buildsRémi Verschelde2017-02-241-1/+1
|\ \ \ \ \ | | | | | | | | | | | | Really fix iphone builds
| * | | | | Really fix iphone buildsBojidar Marinov2017-02-231-1/+1
| | | | | |
* | | | | | Merge pull request #7879 from bojidar-bg/fix-iphone-buildsRémi Verschelde2017-02-234-4/+4
|\| | | | | | | | | | | | | | | | | Complete the globals.h -> global_config.h conversion
| * | | | | Complete the globals.h -> global_config.h conversionBojidar Marinov2017-02-234-4/+4
| | | | | |
* | | | | | Fixes to webgl/opengl es 3.0 for compatibility with webgl2.0, still does not ↵Juan Linietsky2017-02-225-4/+7
|/ / / / / | | | | | | | | | | | | | | | work though
* | | | / Fix WebAssembly builds on Windowseska2017-02-212-13/+29
| |_|_|/ |/| | |
* | | | -renamed globals.h to global_config.cpp (this seems to have caused a few ↵Juan Linietsky2017-02-2116-18/+17
| | | | | | | | | | | | | | | | | | | | | | | | modified files) -.pck and .zip exporting redone, seems to be working..
* | | | Automatically zip web export templateseska2017-02-202-30/+30
| | | | | | | | | | | | | | | | Also fix web builds on Windows and clean up
* | | | Fix parallel asm.js/WebAssembly buildseska2017-02-201-1/+1
| |/ / |/| |
* | | Editor Export Settings Dialog is completed!! Now on to make some exporters..Juan Linietsky2017-02-197-28/+49
|/ /
* | X11: Move audio driver finalize to the start of cleanupHein-Pieter van Braam2017-02-171-4/+4
| | | | | | | | | | | | | | The audio driver cleanup needs to happen at the start of finish otherwise a race still seems to exist with the destruction of the audioserver. I think that destroying the X resoures before has something to do with it.
* | X11: Finalize audiodrivers on exitHein-Pieter van Braam2017-02-171-1/+4
|/ | | | | | | The audiodrivers loaded by OS_X11 are not destroyed before the audioserver is. This causes a segfault on exit. The code is taken from os_windows.cpp which did have the cleanup code.
* Fix missing semicolon in previous commitRémi Verschelde2017-02-131-1/+1
|
* Fix for issue #7766Brett-Mitchell2017-02-131-1/+2
| | | Add initialization for OS_OSX.mouse_mode in OS_OSX::OS_OSX(). mouse_mode now defaults to OS::MOUSE_MODE_VISIBLE.
* Rename the _MD macro to D_METHODHein-Pieter van Braam2017-02-137-30/+30
| | | | | | This new name also makes its purpose a little clearer This is a step towards fixing #56
* Merge pull request #7581 from Faless/v6_wild_bindRémi Verschelde2017-02-126-31/+56
|\ | | | | TCP/UDP listen bind to address and bugfixes
| * Fix buffer size check in UDP socket.Fabio Alessandrelli2017-01-231-1/+1
| | | | | | | | | | We were reserving 12 bytes from the buffer for ip, port, and length, but since IPv6 introduction we should be reserving 24 (IPv6 are 16 bytes)
| * Use default UDP ring buffer size of 65536 for clientsFabio Alessandrelli2017-01-231-2/+2
| | | | | | | | | | | | | | We should probably create a specific function for setting the recv buffer anyway. UDP sockets does not need to bind (listen) to be able to call recvfrom. This is especially useful for clients who just call set_send_address and start communicating with a server.
| * Fix bug causing UDP socket to close after the first send if not listeningFabio Alessandrelli2017-01-231-0/+1
| | | | | | | | The ring buffer for receiving packets was not resized in constructor
| * Avoid deadlock when writing/reading data on a connecting TCP socketFabio Alessandrelli2017-01-232-10/+5
| | | | | | | | | | TCP status polling is always performed as non blocking. Trying to put a packet on a connecting socket will fail immediately.
| * Remove set_ip_type from network classes (no longer needed)Fabio Alessandrelli2017-01-234-9/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | - TCP: - `listen` bind to wildcard "*" -> dual stack socket - `listen` bind to address -> socket from address type - `connect` -> resolve using best protocol (UNSPEC), socket from address type - UDP: - `listen` bind to wildcard "*" -> dual stack socket - `listen` bind to address -> socket from address type - `put_packet`/`put_var` -> resolve using TYPE_ANY (UNSPEC), socket from address type (to change socket type you must first call `close` it)
| * Implement UDP listen bind addressFabio Alessandrelli2017-01-232-6/+23
| |
| * Implement TCP Server bind addressFabio Alessandrelli2017-01-233-6/+19
| |
| * Convert validity checks of IP_Address to is_valid method.Fabio Alessandrelli2017-01-231-1/+1
| |
| * Avoid calling close when polling a UDP peer without socketFabio Alessandrelli2017-01-231-0/+3
| |
* | Merge pull request #7782 from SaracenOne/windows_relative_cursor_fixRémi Verschelde2017-02-121-2/+3
|\ \ | | | | | | Fix relative cursor data in CAPTURED mouse mode on Windows.
| * | Fix glitches when sampling relative cursor data in CAPTURED mouse mode on ↵Saracen2017-02-111-2/+3
| | | | | | | | | | | | Windows.
* | | Merge pull request #7771 from Limb/winaudiodriverRémi Verschelde2017-02-121-0/+5
|\ \ \ | | | | | | | | Close out audio drivers when exiting on Windows.
| * | | Close out audio drivers when exiting.Kenneth Lorthioir2017-02-091-0/+5
| |/ / | | | | | | | | | Prevents a crash when closing the project manager.
* | | Merge pull request #7770 from Limb/removedx9Rémi Verschelde2017-02-122-8/+0
|\ \ \ | | | | | | | | Removed DX9 Rasterizer in windows
| * | | Removed DX9 Rasterizer in windows.Kenneth Lorthioir2017-02-092-8/+0
| |/ / | | | | | | | | | | | | | | | This doesn't seem to be needed anymore and the code to free the unused rasterizer was throwing a memory violation since it was getting set to a value somehow.
* / / Fixed compilation issues with Visual StudioKenneth Lorthioir2017-02-082-0/+7
|/ /
* | Merge pull request #7578 from baekdahl/masterRémi Verschelde2017-02-021-7/+0
|\ \ | | | | | | x11: don't wait for window to be mapped
| * | x11: don't wait for window to be mappedJesper Bækdahl2017-01-191-7/+0
| |/
* | Merge pull request #7689 from eska014/webgl2Rémi Verschelde2017-02-027-56/+23
|\ \ | | | | | | Enable WebGL2 in web export, start fixing build
| * | Enable WebGL2 in web export, start fixing buildeska2017-02-017-56/+23
| | | | | | | | | | | | Will not yet compile
* | | Merge pull request #7683 from marcelofg55/masterRémi Verschelde2017-02-021-9/+27
|\ \ \ | | | | | | | | Fix issues with set_window_resizable on x11
| * | | Fix issues with set_window_resizable on x11marcelofg552017-01-301-9/+27
| | | |
* | | | Merge pull request #7645 from tagcup/x11_optimization_flags_v2Rémi Verschelde2017-02-021-9/+16
|\ \ \ \ | |/ / / |/| | | Use -Ofast on x11. Also introduced use_lto option.
| * | | Use -Ofast on x11. Also introduced use_lto option.Ferenc Arn2017-01-261-9/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | debug_release doesn't turn off optimizations for release target now. Ensure that sanitizer options apply to both C and C++ files. Built-in optimization/debug flags are prepended such that user-specified flags can override them. Based on and around the discussion in PR #5194.
* | | | Removed import/export system, will start new one from scratch.Juan Linietsky2017-01-257-6/+16
|/ / /
* | | Added focus tracking in X11 and Windows classes, added new confined mouse ↵Ilija Boshkov2017-01-254-31/+72
| | | | | | | | | | | | mode (#7162)
* | | Fix resources for Android modules not being mergedPedro J. Estébanez2017-01-251-2/+1
| | | | | | | | | | | | Fixes #7421
* | | WIP new AudioServer, with buses, effects, etc.Juan Linietsky2017-01-211-0/+1
| |/ |/|
* | Merge pull request #7558 from Faless/fix_windows_outputRémi Verschelde2017-01-161-10/+2
|\ \ | |/ |/| Fix gibberish output for windows/mingw.
| * Fix gibberish output for windows/mingw.Fabio Alessandrelli2017-01-161-10/+2
| | | | | | | | | | | | | | %ls should be used instead of %s or %S to speficy narrow/wide charstring in wprintf fwprintf Fixes #6252
* | Adapt platforms to AudioServer refactoringRémi Verschelde2017-01-1624-280/+84
|/ | | | | | Fixes compilation on Windows and likely other platforms (at least as far as AudioServer changes were concerned), though they were not tested.
* #7215 try to fix adb bad targeting user on deviceJerome670002017-01-161-1/+1
|
* Fix bug in windows TCP poll functionFabio Alessandrelli2017-01-161-4/+1
| | | | | | Bug introduced when implementing TCP disconnection detection. (too much yank-paste). Fixes #7545
* Working on compile issues for iOSBastiaanOlij2017-01-1612-114/+66
|