summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-10-09Fix data alignment issues in get_data() in AudioStreamSamplehungrymonkey
I am fixing the issue by adding DATA_PAD to the return pointer as suggested by hi-ogawa When using set_data in AudioStreamSample in PoolByteArray, the data is set using a DATA_PAD to pad the pointer to the correct place as such uint8_t *dataptr = (uint8_t *)data; copymem(dataptr + DATA_PAD, r.ptr(), datalen); data_bytes = datalen; godot/scene/resources/audio_stream_sample.cpp#L473 All I am doing is adding a DATA_PAD to the return pointer to get_data() in AudioStreamSample to change godot/scene/resources/audio_stream_sample.cpp#L48 PoolVector<uint8_t>::Write w = pv.write(); copymem(w.ptr(), data, data_bytes); to PoolVector<uint8_t>::Write w = pv.write(); uint8_t *dataptr = (uint8_t *)data; copymem(w.ptr(), dataptr + DATA_PAD, data_bytes); Please review whether or not set or get is correct. Because this issue seems to be fixable by removing DATA_PAD in set_data() instead of adding DATA_PAD to get_data(). I have not tested the latter fix Fixes #issue, 11873
2017-10-08Merge pull request #11938 from brunosxs/docsChris Bradfield
[DOCS] File Class method description
2017-10-08[DOCS] File Class method descriptionbrunosxs
2017-10-08Merge pull request #11946 from touilleMan/pluginscript-improve-wrapper-apiThomas Herzog
[GDnative] create generated include/gdnative_wrapper_code.gen.h
2017-10-08Merge pull request #11944 from Nallebeorn/documentationChris Bradfield
[DOCS] Fix a typo in KinematicBody and KinematicBody2D.
2017-10-08[GDnatvie] improve wrapper code generationEmmanuel Leblond
2017-10-08Fix a typo in KinematicBody and KinematicBody2D.Benjamin Larsson
2017-10-08Merge pull request #11780 from touilleMan/gdnative-string-name-wrapperThomas Herzog
[GDnative] Add string_name api
2017-10-08[GDnative] Add string_name apiEmmanuel Leblond
2017-10-08Merge pull request #11923 from sheepandshepherd/gdnative_api_json_arrayThomas Herzog
Store GDNative API in array instead of dictionary
2017-10-07Merge pull request #11920 from mhilbrunner/docs-cameraChris Bradfield
[DOCS] Camera documentation
2017-10-08Merge pull request #11902 from GDquest/texture-button-progressPoommetee Ketson
[DOCS] Write TextureButton, review and fill missing entries in TextureProgress [ci skip]
2017-10-08Merge pull request #11918 from Nallebeorn/documentationPoommetee Ketson
[DOCS] Write missing method and member descriptions of KinematicBody2D [ci skip]
2017-10-07Merge pull request #11914 from diowonderland/docs-backbuffercopyChris Bradfield
[DOCS] BackBufferCopy: Document members
2017-10-07Merge pull request #11917 from brunosxs/docsChris Bradfield
[DOCS] Add descriptions to members of Camera2D
2017-10-08Merge pull request #11886 from Grosskopf/Sprite3D-docsPoommetee Ketson
[DOCS] Added Documentation for Sprite3D, AnimatedSprite3D and SpriteBase3D and updated Sprite and Animatedsprite [ci skip]
2017-10-07Minor fixes to KinematicBody and KinematicBody2DBenjamin Larsson
2017-10-07[DOCS] Add descriptions to members of Camera2Dbrunosxs
2017-10-07Edit move_and_slide, it does a bit more than I first thought.Benjamin Larsson
2017-10-07Fixed an error in get_floor_velocity() docsBenjamin Larsson
2017-10-07Merge pull request #11924 from neikeq/bIgnacio Etcheverry
Fix dot separated assembly names confused with file extensions
2017-10-07Fix dot separated assembly names confused with file extensionsIgnacio Etcheverry
2017-10-07[DOCS] BackBufferCopy: Document membersDio
2017-10-07Small changes to KinematicBody2D docs.Benjamin Larsson
2017-10-07Update KinematicBody2D docs.Benjamin Larsson
2017-10-07Store GDNative API in array instead of dictionarysheepandshepherd
2017-10-07Merge pull request #11900 from neikeq/aIgnacio Etcheverry
Fix assembly load hooks and sizeof wrong type
2017-10-07[DOCS] Camera documentationmhilbrunner
2017-10-07Added Documentation for Sprite3D, AnimatedSprite3D and SpriteBase3D etc.Grosskopf
2017-10-07[DOCS] Write TextureButton, review and finish TextureProgressNathan
2017-10-07Merge pull request #11904 from N0hbdy/masterRémi Verschelde
Fix python 3 build in osx-specific platform [ci skip]
2017-10-07Merge pull request #11843 from hoelzl/pr-python3-buildRémi Verschelde
Fix Python 3 build
2017-10-07Fix python 3 build in osx-specific platformN0hbdy
2017-10-07Fix sizeof wrong typeIgnacio Etcheverry
2017-10-07Fix assembly load hooksIgnacio Etcheverry
2017-10-07Merge pull request #11896 from neikeq/pr-issue-11892Ignacio Etcheverry
Quote MSBuild arguments
2017-10-07Quote MSBuild arguments. Fixes #11892Ignacio Etcheverry
2017-10-07Merge pull request #11894 from neikeq/pr-issue-11834Ignacio Etcheverry
Mono: Make sure editor thread is attached on script reload
2017-10-07Mono: Make sure editor thread is attached on script reloadIgnacio Etcheverry
2017-10-06Merge pull request #11849 from cart/mono_parent_fieldsIgnacio Etcheverry
Mono: support exported parent class fields
2017-10-06Merge pull request #11881 from Noshyaar/pr-esAndreas Haas
EditorSettings: remove duplicate set_favorite_dirs
2017-10-06EditorSettings: remove duplicate set_favorite_dirsPoommetee Ketson
2017-10-06Fix LINK/UNLINK console spam with navmeshesBartłomiej T. Listwon
Removed unnecessary debug messages. Fixes #10804
2017-10-06Merge pull request #11814 from groud/fix_draw_pre_drag_rectAndreas Haas
Fixes the Control pre-drag rect not drawn correctly
2017-10-06Merge pull request #11853 from endragor/long-string-loggingAndreas Haas
Fix logging of long strings via RotatedFileLogger
2017-10-06Merge pull request #11859 from marcelofg55/invalid_customtheme_crashfixAndreas Haas
Fix crash when a custom theme can't be loaded
2017-10-06Merge pull request #11854 from endragor/fix-few-classdb-defsAndreas Haas
Add NIL_IS_VARIANT usage to few definitions
2017-10-06Merge pull request #11687 from BastiaanOlij/arvr_changesAndreas Haas
Made a few tweaks to the ARVR interface
2017-10-06Made a few tweaks to the interfaceBastiaanOlij
2017-10-05get parent class fields when updating a CSharpScript's exportsCarter Anderson
This makes the fields viewable / editable in the inspector