<feed xmlns='http://www.w3.org/2005/Atom'>
<title>godot.git/drivers/rtaudio, branch 2.1-stable</title>
<subtitle>Godot Engine – Multi-platform 2D and 3D game engine https://godotengine.org</subtitle>
<id>https://git.neuromancer.sk/godot.git/atom/drivers/rtaudio?h=2.1-stable</id>
<link rel='self' href='https://git.neuromancer.sk/godot.git/atom/drivers/rtaudio?h=2.1-stable'/>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/'/>
<updated>2016-07-23T11:25:25Z</updated>
<entry>
<title>RtAudio: Update to upstream version 4.1.2</title>
<updated>2016-07-23T11:25:25Z</updated>
<author>
<name>Rémi Verschelde</name>
</author>
<published>2016-07-23T11:25:25Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=c1ab343f02ee04b807087f28b33b4ac279d0fda6'/>
<id>urn:sha1:c1ab343f02ee04b807087f28b33b4ac279d0fda6</id>
<content type='text'>
The only differences we have with the upstream tarball are marked with
`// -GODOT-` comments for clarity. The changes we currently have are
just some defines for cross-platform configuration, and could likely be
moved to the SCons buildsystem (ideally in a sub-environment to avoid
having RtAudio-specific defines pollute the whole build log).

One change for WinRT was not kept, if it is needed it should ideally be
integrated upstream:
```
 #if defined(__WINDOWS_DS__) || defined(__WINDOWS_ASIO__) || defined(__WINDOWS_WASAPI__)
-#ifdef WINRT_ENABLED
-  #define MUTEX_INITIALIZE(A) InitializeCriticalSectionEx(A, 0, 0)
-#else
   #define MUTEX_INITIALIZE(A) InitializeCriticalSection(A)
-#endif
```
</content>
</entry>
<entry>
<title>Add missing license headers in our source files (#5255)</title>
<updated>2016-06-18T12:46:12Z</updated>
<author>
<name>Rémi Verschelde</name>
</author>
<published>2016-06-18T12:46:12Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=a7fc04626af238bf9a80c4f3b569e1c5d70465c9'/>
<id>urn:sha1:a7fc04626af238bf9a80c4f3b569e1c5d70465c9</id>
<content type='text'>
Also removes a couple wrong Godot headers from third-party source files.</content>
</entry>
<entry>
<title>RtAudio: proper under/overflow warning</title>
<updated>2016-06-08T10:25:40Z</updated>
<author>
<name>J08nY</name>
</author>
<published>2016-06-08T09:26:54Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=39260f9dca60d9637cf00264d8ae51e027cb1a51'/>
<id>urn:sha1:39260f9dca60d9637cf00264d8ae51e027cb1a51</id>
<content type='text'>
fix #5102
</content>
</entry>
<entry>
<title>Remove unnecessary null pointer checks</title>
<updated>2016-01-04T10:46:16Z</updated>
<author>
<name>Emmanuel Leblond</name>
</author>
<published>2016-01-04T10:46:16Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=cabf9234849508ba7285d1a5bafd3bab692eb80f'/>
<id>urn:sha1:cabf9234849508ba7285d1a5bafd3bab692eb80f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Update copyright to 2016 in headers</title>
<updated>2016-01-01T13:50:53Z</updated>
<author>
<name>George Marques</name>
</author>
<published>2016-01-01T13:50:53Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=5be9ff7b6715a661e85f99b108f96340de7ef435'/>
<id>urn:sha1:5be9ff7b6715a661e85f99b108f96340de7ef435</id>
<content type='text'>
</content>
</entry>
<entry>
<title>newline fixes</title>
<updated>2015-10-08T18:00:40Z</updated>
<author>
<name>reduz</name>
</author>
<published>2015-10-08T18:00:40Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=aad2bbdb6fb7c8217d7e75480b38e45f00cb3abd'/>
<id>urn:sha1:aad2bbdb6fb7c8217d7e75480b38e45f00cb3abd</id>
<content type='text'>
</content>
</entry>
<entry>
<title>update rtaudio to latest version</title>
<updated>2015-05-06T21:08:06Z</updated>
<author>
<name>yg2f</name>
</author>
<published>2015-05-06T21:08:06Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=2f4c435bfaf4bf8c9353433ef00eff228169c013'/>
<id>urn:sha1:2f4c435bfaf4bf8c9353433ef00eff228169c013</id>
<content type='text'>
update rtaudio from latest version availbale on github
</content>
</entry>
<entry>
<title>3D Physics Rework, Other Stuff</title>
<updated>2014-09-15T14:33:30Z</updated>
<author>
<name>Juan Linietsky</name>
</author>
<published>2014-09-15T14:33:30Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=8cab401d08f8e25aa9b2dc710204785858ff3dbb'/>
<id>urn:sha1:8cab401d08f8e25aa9b2dc710204785858ff3dbb</id>
<content type='text'>
-=-=-=-=-=-=-=-=-=-=-=-=-=-

3D Physics:
-Fixed "Bounce" parameter in 3D
-Fixed bug affecting Area (sometims it would not detect properly)
-Vehicle Body has seen heavy work
-Added Query API for doing space queries in 3D. Needs some docs though.
-Added JOINTS! Adapted Bullet Joints: and created easy gizmos for setting them up:
   -PinJoint
   -HingeJoint (with motor)
   -SliderJoint
   -ConeTwistJoint
   -Generic6DOFJoint
-Added OBJECT PICKING! based on the new query API. Any physics object now (Area or Body) has the following signals and virtual functions:
    -input_event (mouse or multitouch input over the body)
    -mouse_enter (mouse entered the body area)
    -mouse_exit (mouse exited body area)
   For Area it needs to be activated manually, as it isn't by default (ray goes thru).

Other:

-Begun working on Windows 8 (RT) port. Compiles but does not work yet.
-Added TheoraPlayer library for improved to-texture and portable video support.
-Fixed a few bugs in the renderer, collada importer, collada exporter, etc.
</content>
</entry>
<entry>
<title>GODOT IS OPEN SOURCE</title>
<updated>2014-02-10T01:10:30Z</updated>
<author>
<name>Juan Linietsky</name>
</author>
<published>2014-02-10T01:10:30Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=0b806ee0fc9097fa7bda7ac0109191c9c5e0a1ac'/>
<id>urn:sha1:0b806ee0fc9097fa7bda7ac0109191c9c5e0a1ac</id>
<content type='text'>
</content>
</entry>
</feed>
