<feed xmlns='http://www.w3.org/2005/Atom'>
<title>dolphin/Source/Core/VideoBackends/OGL/StreamBuffer.h, branch stable</title>
<subtitle>GameCube and Wii emulator</subtitle>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/'/>
<entry>
<title>Set copyright year to when a file was created</title>
<updated>2015-05-25T11:22:31+00:00</updated>
<author>
<name>Tillmann Karras</name>
<email>tilkax@gmail.com</email>
</author>
<published>2015-05-24T04:55:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=30ebb2459eb97ba544547183854775df8460b475'/>
<id>30ebb2459eb97ba544547183854775df8460b475</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update license headers to GPLv2+</title>
<updated>2015-05-25T11:22:31+00:00</updated>
<author>
<name>Tillmann Karras</name>
<email>tilkax@gmail.com</email>
</author>
<published>2015-05-17T23:08:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=cefcb0ace9d363b3679b4e93bcc9ec05f1e5f4f8'/>
<id>cefcb0ace9d363b3679b4e93bcc9ec05f1e5f4f8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Minor consistency changes</title>
<updated>2015-01-12T20:18:18+00:00</updated>
<author>
<name>Stevoisiak</name>
<email>S.Vascellaro@gmail.com</email>
</author>
<published>2015-01-11T05:17:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=cb86db7b68481edf129a4bfcf6cd44a9a0f32ac8'/>
<id>cb86db7b68481edf129a4bfcf6cd44a9a0f32ac8</id>
<content type='text'>
Mostly small changes, like capitalization and spelling
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Mostly small changes, like capitalization and spelling
</pre>
</div>
</content>
</entry>
<entry>
<title>OGL: Fix brace and body placements</title>
<updated>2014-08-15T18:12:29+00:00</updated>
<author>
<name>Lioncash</name>
<email>mathew1800@gmail.com</email>
</author>
<published>2014-08-15T18:09:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=960b54670ca3c2625eaaaee725e093b3f03251c5'/>
<id>960b54670ca3c2625eaaaee725e093b3f03251c5</id>
<content type='text'>
Also got rid of void argument specifiers. These are a carryover from C.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also got rid of void argument specifiers. These are a carryover from C.
</pre>
</div>
</content>
</entry>
<entry>
<title>OGL-StreamBuffer: replace size_t with u32</title>
<updated>2014-06-05T11:33:50+00:00</updated>
<author>
<name>degasus</name>
<email>wickmarkus@web.de</email>
</author>
<published>2014-06-05T09:51:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=d9eafd94a2f102c879951836229b539283de0426'/>
<id>d9eafd94a2f102c879951836229b539283de0426</id>
<content type='text'>
Yes, this matters.
We align our buffer all the the time which needs a division. u64 divisions are just so slow.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Yes, this matters.
We align our buffer all the the time which needs a division. u64 divisions are just so slow.
</pre>
</div>
</content>
</entry>
<entry>
<title>OGL-StreamBuffer: move alignment to caller</title>
<updated>2014-06-05T11:32:13+00:00</updated>
<author>
<name>degasus</name>
<email>wickmarkus@web.de</email>
</author>
<published>2014-06-05T09:25:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=606e46ba8d497ccd2719b697c7ed1994710435e5'/>
<id>606e46ba8d497ccd2719b697c7ed1994710435e5</id>
<content type='text'>
Only the caller know if alignment is needed at all, so it can be skipped now.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Only the caller know if alignment is needed at all, so it can be skipped now.
</pre>
</div>
</content>
</entry>
<entry>
<title>OGL-StreamBuffer: make the SLOT calculation much easier</title>
<updated>2014-06-05T11:32:13+00:00</updated>
<author>
<name>degasus</name>
<email>wickmarkus@web.de</email>
</author>
<published>2014-06-05T09:06:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=02a4e3d70fb3f71a1acfc1e4cb22a8e3a0dee963'/>
<id>02a4e3d70fb3f71a1acfc1e4cb22a8e3a0dee963</id>
<content type='text'>
The size of the buffer is now power of 2, so we can use a shift instead of a division.
This was at about 2% of the global CPU usage.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The size of the buffer is now power of 2, so we can use a shift instead of a division.
This was at about 2% of the global CPU usage.
</pre>
</div>
</content>
</entry>
<entry>
<title>OGL-StreamBuffer: allocate fences in StreamBuffer directly</title>
<updated>2014-06-05T11:32:13+00:00</updated>
<author>
<name>degasus</name>
<email>wickmarkus@web.de</email>
</author>
<published>2014-06-05T08:40:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=d81d2e89155cb6eb5ab20cc7a32bcf8daa4788ea'/>
<id>d81d2e89155cb6eb5ab20cc7a32bcf8daa4788ea</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove all trailing whitespaces from our codebase.</title>
<updated>2014-03-29T10:05:44+00:00</updated>
<author>
<name>Pierre Bourdon</name>
<email>delroth@gmail.com</email>
</author>
<published>2014-03-29T10:05:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=664c8d30a055f4762a2a60be77c1c8eaec1a5d85'/>
<id>664c8d30a055f4762a2a60be77c1c8eaec1a5d85</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Convert all includes to relative paths.</title>
<updated>2014-02-18T07:19:10+00:00</updated>
<author>
<name>Lioncash</name>
<email>mathew1800@gmail.com</email>
</author>
<published>2014-02-17T10:18:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=2afe2152712981e21d6bda6f029292ed2b1cf91e'/>
<id>2afe2152712981e21d6bda6f029292ed2b1cf91e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
