<feed xmlns='http://www.w3.org/2005/Atom'>
<title>raylib/examples/textures, 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>Support mouse cursor on RPI native</title>
<updated>2019-08-20T18:39:22+00:00</updated>
<author>
<name>raysan5</name>
<email>raysan5@gmail.com</email>
</author>
<published>2019-08-20T18:39:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/raylib/commit/?id=3db13edd898adcd41aa0768e2e707256687a90ac'/>
<id>3db13edd898adcd41aa0768e2e707256687a90ac</id>
<content type='text'>
Reduced bunnymark limits
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Reduced bunnymark limits
</pre>
</div>
</content>
</entry>
<entry>
<title>Update textures_mouse_painting.c</title>
<updated>2019-07-28T17:04:30+00:00</updated>
<author>
<name>raysan5</name>
<email>raysan5@gmail.com</email>
</author>
<published>2019-07-28T17:04:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/raylib/commit/?id=38ee6156f85ec7fbda2f9ad920bb0a8c7cdd22c5'/>
<id>38ee6156f85ec7fbda2f9ad920bb0a8c7cdd22c5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Replace tabs by spaces</title>
<updated>2019-07-28T13:33:55+00:00</updated>
<author>
<name>raysan5</name>
<email>raysan5@gmail.com</email>
</author>
<published>2019-07-28T13:33:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/raylib/commit/?id=b83d165764cd81de8bd5a0bb8260117787f419a4'/>
<id>b83d165764cd81de8bd5a0bb8260117787f419a4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Added image saved message</title>
<updated>2019-07-28T13:26:22+00:00</updated>
<author>
<name>raysan5</name>
<email>raysan5@gmail.com</email>
</author>
<published>2019-07-28T13:26:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/raylib/commit/?id=895f9613d21ecab734ddddec7159dc5e80d92d31'/>
<id>895f9613d21ecab734ddddec7159dc5e80d92d31</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Reviewed new examples</title>
<updated>2019-07-28T13:09:01+00:00</updated>
<author>
<name>raysan5</name>
<email>raysan5@gmail.com</email>
</author>
<published>2019-07-28T13:09:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/raylib/commit/?id=602d2a65dd628ea75801c79bfdf960b081696e34'/>
<id>602d2a65dd628ea75801c79bfdf960b081696e34</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Added scissor test and mouse painting examples proposed in #890 (#919)</title>
<updated>2019-07-28T09:12:13+00:00</updated>
<author>
<name>ChrisDill</name>
<email>chrisdude134@gmail.com</email>
</author>
<published>2019-07-28T09:12:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/raylib/commit/?id=879c874330e2946ca0dcce74a5dfbe852b4d1f4a'/>
<id>879c874330e2946ca0dcce74a5dfbe852b4d1f4a</id>
<content type='text'>
- Updated Makefile with new examples</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Updated Makefile with new examples</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>Added array bounds check to textures_bunnymark</title>
<updated>2019-05-29T12:58:31+00:00</updated>
<author>
<name>Chris Dill</name>
<email>chrisdude134@gmail.com</email>
</author>
<published>2019-05-29T12:58:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/raylib/commit/?id=42d57bbe00c99fe3cf6a0819b9a2bf4bf3b64873'/>
<id>42d57bbe00c99fe3cf6a0819b9a2bf4bf3b64873</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Review variables initialization</title>
<updated>2019-05-26T22:18:15+00:00</updated>
<author>
<name>Ray</name>
<email>raysan5@gmail.com</email>
</author>
<published>2019-05-26T22:18:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/raylib/commit/?id=87774a0a21f8d2998b4dc13e989005270476ae92'/>
<id>87774a0a21f8d2998b4dc13e989005270476ae92</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Review ALL examples</title>
<updated>2019-05-20T14:36:42+00:00</updated>
<author>
<name>Ray</name>
<email>raysan5@gmail.com</email>
</author>
<published>2019-05-20T14:36:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/raylib/commit/?id=b525039e0ab8bcaa2fd6bde34c72a6405f88ae49'/>
<id>b525039e0ab8bcaa2fd6bde34c72a6405f88ae49</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
