<feed xmlns='http://www.w3.org/2005/Atom'>
<title>raylib/games, branch fix-mouse-released</title>
<subtitle>Forked from https://github.com/raysan5/raylib</subtitle>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/raylib/'/>
<entry>
<title>Fix generation of web examples (#1007)</title>
<updated>2019-11-01T18:09:38+00:00</updated>
<author>
<name>Pablo Marcos Oltra</name>
<email>pablo.marcos.oltra@gmail.com</email>
</author>
<published>2019-11-01T18:09:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/raylib/commit/?id=5d9df629d79458423faf249b952e595ed68d669b'/>
<id>5d9df629d79458423faf249b952e595ed68d669b</id>
<content type='text'>
At least on Linux, CMake seems to add automatically
the '-rdynamic' flag. As a result, Emscripten
generates a fat HTML file that does not work.
Removing it allows HTML+JS+WASM generation.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
At least on Linux, CMake seems to add automatically
the '-rdynamic' flag. As a result, Emscripten
generates a fat HTML file that does not work.
Removing it allows HTML+JS+WASM generation.</pre>
</div>
</content>
</entry>
<entry>
<title>Replace tabs with spaces and update year of copyright notices (#927)</title>
<updated>2019-08-03T09:07:41+00:00</updated>
<author>
<name>Leandro Gabriel</name>
<email>45115495+VelocityIsNotSpeed@users.noreply.github.com</email>
</author>
<published>2019-08-03T09:07:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/raylib/commit/?id=89c16baf182aed201b75b99a253c0b074ffffeed'/>
<id>89c16baf182aed201b75b99a253c0b074ffffeed</id>
<content type='text'>
* Update year of copyright notices

* Fix mistake in comment

* Fix typo ("algorythms")

* Replace tabs with spaces

* Remove trailing whitespace and fix mistake in comment

* Fix ExportImageAsCode missing comment rectangle corner

* Replace tab with spaces

* Replace tabs with spaces
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Update year of copyright notices

* Fix mistake in comment

* Fix typo ("algorythms")

* Replace tabs with spaces

* Remove trailing whitespace and fix mistake in comment

* Fix ExportImageAsCode missing comment rectangle corner

* Replace tab with spaces

* Replace tabs with spaces
</pre>
</div>
</content>
</entry>
<entry>
<title>#917 This commit changes the path to 'shell.html' in all Makefiles (#918)</title>
<updated>2019-07-27T09:45:49+00:00</updated>
<author>
<name>Antonio Radovcic</name>
<email>niorad@users.noreply.github.com</email>
</author>
<published>2019-07-27T09:45:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/raylib/commit/?id=814952c01dcc1e14eb76e878c0cc3bdef6ee0fd2'/>
<id>814952c01dcc1e14eb76e878c0cc3bdef6ee0fd2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Some tweaks revisiting an old game...</title>
<updated>2019-07-24T20:36:52+00:00</updated>
<author>
<name>Ray</name>
<email>raysan5@gmail.com</email>
</author>
<published>2019-07-24T20:36:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/raylib/commit/?id=a5329efb233432018c9be5e6e9bed1e07b6a365c'/>
<id>a5329efb233432018c9be5e6e9bed1e07b6a365c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>BREAKING CHANGE: Read description</title>
<updated>2019-07-24T13:05:14+00:00</updated>
<author>
<name>Ray</name>
<email>raysan5@gmail.com</email>
</author>
<published>2019-07-24T13:05:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/raylib/commit/?id=b4d67499a73af36453b7588cbd0427112a1154b2'/>
<id>b4d67499a73af36453b7588cbd0427112a1154b2</id>
<content type='text'>
Changes:

 - Font structure has been redesigned, CharInfo structure contained character rectangle within font texture, it has not much sense, considering that it was an information relative to the font atlas generated and not the character itself, so character rectangles have been moved out from CharInfo to Font.
 - CharInfo included a data parameters to contain character pixel data (usually grayscale), generated on TTF font generation. It was inconsistent with other fonts types, so, now CharInfo includes directly an Image of the glyph.
 - REDESIGNED: GenImageFontAtlas(), additional recs parameter added, loaded and filled inside the function to export atlas characters rectangles, instead of silently modify the input CharInfo data.
 - REVIEWED: ImageTextEx(), funtion retrieved the font atlas image from the GPU, that was slow and problematic in several platforms. Now it uses directly the CharInfo image. Support for unicode codepoints has also been added.
 - REDESIGNED: ImageDraw(), now it includes an additional parameter, the color tint, not only it could be useful for several situations but also function signature is more consistent with similar functions.
 - ADDED: ImageFromImage() to generate a new image from a piece of another image.
 - REVIEWED: GetNextCodepoint(), renamed parameters to be more clear.

Also all examples and games that were affected by those changes have been reviewed.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Changes:

 - Font structure has been redesigned, CharInfo structure contained character rectangle within font texture, it has not much sense, considering that it was an information relative to the font atlas generated and not the character itself, so character rectangles have been moved out from CharInfo to Font.
 - CharInfo included a data parameters to contain character pixel data (usually grayscale), generated on TTF font generation. It was inconsistent with other fonts types, so, now CharInfo includes directly an Image of the glyph.
 - REDESIGNED: GenImageFontAtlas(), additional recs parameter added, loaded and filled inside the function to export atlas characters rectangles, instead of silently modify the input CharInfo data.
 - REVIEWED: ImageTextEx(), funtion retrieved the font atlas image from the GPU, that was slow and problematic in several platforms. Now it uses directly the CharInfo image. Support for unicode codepoints has also been added.
 - REDESIGNED: ImageDraw(), now it includes an additional parameter, the color tint, not only it could be useful for several situations but also function signature is more consistent with similar functions.
 - ADDED: ImageFromImage() to generate a new image from a piece of another image.
 - REVIEWED: GetNextCodepoint(), renamed parameters to be more clear.

Also all examples and games that were affected by those changes have been reviewed.
</pre>
</div>
</content>
</entry>
<entry>
<title>Update Makefile</title>
<updated>2019-06-08T15:45:51+00:00</updated>
<author>
<name>XiaochuanWang</name>
<email>potter3186@msn.com</email>
</author>
<published>2019-06-08T15:45:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/raylib/commit/?id=391555a063ff5565da8ef930a8e2f14da756d76a'/>
<id>391555a063ff5565da8ef930a8e2f14da756d76a</id>
<content type='text'>
corrected file location for "raylib.rc.data", which will cause an error during compilation</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
corrected file location for "raylib.rc.data", which will cause an error during compilation</pre>
</div>
</content>
</entry>
<entry>
<title>Updated games building</title>
<updated>2019-06-06T22:16:08+00:00</updated>
<author>
<name>Ray</name>
<email>raysan5@gmail.com</email>
</author>
<published>2019-06-06T22:16:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/raylib/commit/?id=59b7412772e7a82b6432a75f0c29b4d3f4d3bb55'/>
<id>59b7412772e7a82b6432a75f0c29b4d3f4d3bb55</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove wrong files</title>
<updated>2019-06-06T21:56:05+00:00</updated>
<author>
<name>Ray</name>
<email>raysan5@gmail.com</email>
</author>
<published>2019-06-06T21:56:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/raylib/commit/?id=718f7a016164dab4771b40e84811e671cff99da9'/>
<id>718f7a016164dab4771b40e84811e671cff99da9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update example</title>
<updated>2019-06-06T21:52:25+00:00</updated>
<author>
<name>Ray</name>
<email>raysan5@gmail.com</email>
</author>
<published>2019-06-06T21:52:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/raylib/commit/?id=6945511e82af641700321c90e1c16f7636920763'/>
<id>6945511e82af641700321c90e1c16f7636920763</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Define standard examples size</title>
<updated>2019-05-29T11:47:57+00:00</updated>
<author>
<name>Ray</name>
<email>raysan5@gmail.com</email>
</author>
<published>2019-05-29T11:47:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/raylib/commit/?id=efdc6f87d53d319816b3fc76a00f309f110f3955'/>
<id>efdc6f87d53d319816b3fc76a00f309f110f3955</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
