aboutsummaryrefslogtreecommitdiff
path: root/drivers (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Revert "libao audio driver"Juan Linietsky2015-11-194-246/+0
|
* Merge pull request #2756 from trond/bugfix_udpJuan Linietsky2015-11-191-1/+3
|\ | | | | UDP fixes
| * Fixed mistake where available buffer size would not be updated for each ↵Trond Abusdal2015-11-191-3/+1
| | | | | | | | recvfrom-call in PacketPeerUDPWinsockPposix.
| * * Winsock UDP messages sent to an unavailable target causing WSAECONNRESET ↵Trond Abusdal2015-11-091-1/+5
| | | | | | | | | | | | will no longer close the socket. * Ensured that unsigned<->signed conversion would not cause wrong buffer size values sent to recvfrom.
| * Fixed PacketPeerUDP getting wrongly closed due to recvfrom using ↵Trond Abusdal2015-11-091-1/+1
| | | | | | | | rb.data_left instead of rb.space_left.
* | Merge pull request #903 from a12n/libaoJuan Linietsky2015-11-194-0/+246
|\ \ | | | | | | libao audio driver
| * \ Merge branch 'master' of github.com:okamstudio/godotAnton Yabchinskiy2015-11-02416-76791/+89839
| |\ \
| * \ \ Merge branch 'master' of github.com:okamstudio/godotAnton Yabchinskiy2015-07-29142-1763/+3743
| |\ \ \
| * \ \ \ Merge branch 'master' of github.com:okamstudio/godotAnton Yabchinskiy2015-04-0415-83/+303
| |\ \ \ \
| * \ \ \ \ Merge branch 'master' of https://github.com/okamstudio/godotAnton Yabchinskiy2015-03-108-80/+932
| |\ \ \ \ \
| * \ \ \ \ \ Merge branch 'master' of https://github.com/okamstudio/godotAnton Yabchinskiy2015-02-204-200/+412
| |\ \ \ \ \ \
| * \ \ \ \ \ \ Merge branch 'master' of https://github.com/okamstudio/godotAnton Yabchinskiy2015-02-174-69/+142
| |\ \ \ \ \ \ \
| * \ \ \ \ \ \ \ Merge branch 'master' of https://github.com/okamstudio/godotAnton Yabchinskiy2015-01-214-31/+76
| |\ \ \ \ \ \ \ \
| * \ \ \ \ \ \ \ \ Merge branch 'master' of github.com:okamstudio/godotAnton Yabchinskiy2015-01-1411-7262/+661
| |\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: platform/x11/detect.py
| * \ \ \ \ \ \ \ \ \ Merge branch 'master' of github.com:okamstudio/godotAnton Yabchinskiy2015-01-105-33/+35
| |\ \ \ \ \ \ \ \ \ \
| * \ \ \ \ \ \ \ \ \ \ Merge branch 'master' of github.com:okamstudio/godotAnton Yabchinskiy2015-01-059-20/+39
| |\ \ \ \ \ \ \ \ \ \ \
| * \ \ \ \ \ \ \ \ \ \ \ Merge branch 'master' of github.com:okamstudio/godotAnton Yabchinskiy2014-12-2318-10/+367
| |\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: drivers/SCsub platform/x11/detect.py platform/x11/os_x11.h
| * \ \ \ \ \ \ \ \ \ \ \ \ Merge branch 'master' of http://github.com/okamstudio/godotAnton Yabchinskiy2014-12-092-2/+4
| |\ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | Add missing check for AO_ENABLED in audio_driver_ao.cppAnton Yabchinskiy2014-11-281-0/+4
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Update the list of authors in libao driver sourcesAnton Yabchinskiy2014-11-242-0/+2
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Include cstring header for memset()Anton Yabchinskiy2014-11-221-0/+2
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Cast samples_in to samples_out with reinterpret_cast<int16_t*>Anton Yabchinskiy2014-11-221-1/+2
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | samples_in is an instance variable, prefix it with ad->Anton Yabchinskiy2014-11-221-1/+1
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Fix syntax error in call to ao_play()Anton Yabchinskiy2014-11-221-1/+1
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Set libao sample format to 16 bitsAnton Yabchinskiy2014-11-221-5/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Some plugins don't support 32 bit samples.
| * | | | | | | | | | | | | | Check return value of ao_play()Anton Yabchinskiy2014-11-221-2/+5
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Write audio samples to libao deviceAnton Yabchinskiy2014-11-221-7/+7
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Change 0 to NULL for ao_open_live() and deviceAnton Yabchinskiy2014-11-221-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It's NULL in other places.
| * | | | | | | | | | | | | | Minor code formatting fixes in ao driverAnton Yabchinskiy2014-11-221-6/+4
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Open/close libao audio deviceAnton Yabchinskiy2014-11-222-0/+17
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Initialize/shutdown libaoAnton Yabchinskiy2014-11-221-2/+2
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Add ao/ subdir to drivers/SCsubAnton Yabchinskiy2014-11-221-0/+1
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Import sources for libao driver (unfinished, based on dummy driver)Anton Yabchinskiy2014-11-223-0/+210
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | Merge pull request #2518 from masoudbh3/godot-iconsJuan Linietsky2015-11-191-1/+6
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add icon to exe file in windows export
| * | | | | | | | | | | | | | | change pe_bliss parent directory from /drivers to /toolsmasoud bh2015-11-0986-16449/+0
| | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | Add icon to exe file in windows exportmasoud bh2015-11-0986-1/+16455
| | |_|_|_|_|_|_|_|_|_|_|_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | add version_info and icon sections in "export to windows platform". add version_info and icon to godot exe file (editor & template exe). fix an problem in image class. change all default icons to android export icon (a little more rounded). create an python script for convert file to cpp byte array for use in 'splash.h'.
* | | | | | | | | | | | | | | Merge pull request #2699 from ZuBsPaCe/visual-studio-2015-compilationJuan Linietsky2015-11-181-3/+3
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Visual studio 2015 compilation
| * | | | | | | | | | | | | | | Fixes Visual Studio 2015 linker error (___iob_func)ZuBsPaCe2015-10-301-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The original, uncommited fix simply changed compiler flag /MT to /MD. This would link the C runtime dynamically instead of statically. This is bad, because some users would have to install the c runtime before starting the editor. You can find alot of info about this error, which can happen after upgrading to VS 2015, and there are workarounds. But I realized, that the only place, where iob_func is used, is in e_os.h of the openssl library. The latest version already contains a workaround. I simply updated the part in e_os.h. Reference: https://github.com/openssl/openssl/blob/master/e_os.h#L268 Reference: https://software.intel.com/en-us/forums/intel-parallel-studio-beta-archived/topic/266345 Reference: https://connect.microsoft.com/VisualStudio/feedback/details/1144980/error-lnk2001-unresolved-external-symbol-imp-iob-func Reference: http://stackoverflow.com/questions/757418/should-i-compile-with-md-or-mt Here's the original error message: Creating library bin\godot.windows.tools.lib and object bin\godot.windows.tools.exp drivers1.windows.tools.lib(t1_enc.windows.tools.obj) : error LNK2001: unresolved external symbol ___iob_func drivers1.windows.tools.lib(txt_db.windows.tools.obj) : error LNK2001: unresolved external symbol ___iob_func drivers1.windows.tools.lib(d1_enc.windows.tools.obj) : error LNK2001: unresolved external symbol ___iob_func drivers1.windows.tools.lib(ui_openssl.windows.tools.obj) : error LNK2001: unresolved external symbol ___iob_func drivers1.windows.tools.lib(cryptlib.windows.tools.obj) : error LNK2001: unresolved external symbol ___iob_func drivers1.windows.tools.lib(pem_lib.windows.tools.obj) : error LNK2001: unresolved external symbol ___iob_func drivers1.windows.tools.lib(d1_both.windows.tools.obj) : error LNK2001: unresolved external symbol ___iob_func drivers1.windows.tools.lib(rsa_sign.windows.tools.obj) : error LNK2001: unresolved external symbol ___iob_func bin\godot.windows.tools.exe : fatal error LNK1120: 1 unresolved externals scons: *** [bin\godot.windows.tools.exe] Error 1120
* | | | | | | | | | | | | | | | Merge pull request #2707 from akien-mga/masterJuan Linietsky2015-11-1821-31/+1
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Cosmetic fixes to SCons buildsystem
| * | | | | | | | | | | | | | | | Cosmetic fixes to SCons buildsystemRémi Verschelde2015-11-0121-31/+1
| | |_|_|_|_|_|_|_|_|_|_|_|_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Removed trailing spaces - Made sure all indentation is done using tabs (fixes #39) - Potentially fixed an identation issue for openssl check
* | | | | | | | | | | | | | | | Merge pull request #2715 from SaracenOne/shader_fix_and_enhancementJuan Linietsky2015-11-183-108/+122
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Write to 4-dimensional position access and shader graph code generation fix.
| * | | | | | | | | | | | | | | | Added ability to write directly to 4-dimensional position vector from within ↵Saracen2015-11-023-108/+122
| |/ / / / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | custom vertex shader code. Bugfixes to shader graph code generation concerning xforms.
* | | | | | | | | | | | | | | | Merge pull request #2724 from ↵Juan Linietsky2015-11-181-46/+50
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | SaracenOne/disable_baked_light_sampling_on_shadeless Disable baked lighting sampling on shadeless materials.
| * | | | | | | | | | | | | | | | Disable baked lighting sampling on shadeless materials.Saracen2015-11-021-46/+50
| |/ / / / / / / / / / / / / / /
* | | | | | | | | | | | | | | | Merge pull request #2642 from leezh/nrex-updateJuan Linietsky2015-11-185-186/+679
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Updated nrex with new features
| * | | | | | | | | | | | | | | | Exposed RegEx expanded option to scriptsZher Huei Lee2015-11-072-4/+4
| | | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | Fixed segfault in RegEx.get_capture()Zher Huei Lee2015-11-071-1/+3
| | | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | Updated nrex to latest versionZher Huei Lee2015-11-073-172/+643
| | | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | Updated nrex for LookAhead supportZher Huei Lee2015-11-071-12/+32
| | |_|/ / / / / / / / / / / / / | |/| | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | Merge pull request #2661 from romulox-x/lowMem2DJuan Linietsky2015-11-182-5/+14
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added low_memory_2d_mode