<feed xmlns='http://www.w3.org/2005/Atom'>
<title>dolphin/Source/Core/VideoBackends, branch release-prep-2503</title>
<subtitle>GameCube and Wii emulator</subtitle>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/'/>
<entry>
<title>VideoBackends: Use DXGI 1.6 and D3D11_4</title>
<updated>2025-02-02T08:02:35+00:00</updated>
<author>
<name>Xphalnos</name>
<email>164882787+Xphalnos@users.noreply.github.com</email>
</author>
<published>2025-02-01T16:49:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=c9bd6a13a9b08b1a61d04349e460681ef8087435'/>
<id>c9bd6a13a9b08b1a61d04349e460681ef8087435</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #13275 from Pokechu22/d3d12-custom-root-param-index</title>
<updated>2025-01-20T22:53:40+00:00</updated>
<author>
<name>Pokechu22</name>
<email>pokechu022@gmail.com</email>
</author>
<published>2025-01-20T22:53:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=761e65ed262d77a13805b22b21795b5e97bc33ab'/>
<id>761e65ed262d77a13805b22b21795b5e97bc33ab</id>
<content type='text'>
D3D12: Fix out of bounds root parameter index when per-pixel lighting is disabled</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
D3D12: Fix out of bounds root parameter index when per-pixel lighting is disabled</pre>
</div>
</content>
</entry>
<entry>
<title>D3D12: Fix out of bounds root parameter index when per-pixel lighting is disabled</title>
<updated>2025-01-15T06:30:31+00:00</updated>
<author>
<name>Pokechu22</name>
<email>Pokechu022@gmail.com</email>
</author>
<published>2025-01-15T06:00:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=64514bd8d4de45305788ebbdcf576034cf77bcf8'/>
<id>64514bd8d4de45305788ebbdcf576034cf77bcf8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Vulkan: Only attempt to create a CAMetalLayer on macOS</title>
<updated>2025-01-08T18:51:53+00:00</updated>
<author>
<name>OatmealDome</name>
<email>julian@oatmealdome.me</email>
</author>
<published>2025-01-08T18:51:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=2633b84b981dc7f42f8569da313ccc54586e483e'/>
<id>2633b84b981dc7f42f8569da313ccc54586e483e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Simplify `std::find_if` with `Common::Contains`</title>
<updated>2025-01-01T17:52:03+00:00</updated>
<author>
<name>mitaclaw</name>
<email>140017135+mitaclaw@users.noreply.github.com</email>
</author>
<published>2024-09-21T21:50:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=d92c68e1de481b509d92bbdd68f83c9a92f254aa'/>
<id>d92c68e1de481b509d92bbdd68f83c9a92f254aa</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #13116 from mitaclaw/ranges-modernization-8-trivial-of</title>
<updated>2024-12-26T21:51:53+00:00</updated>
<author>
<name>JMC47</name>
<email>JMC4789@gmail.com</email>
</author>
<published>2024-12-26T21:51:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=532a8621daa5c0d8a3a55f64ffba9cb20209d455'/>
<id>532a8621daa5c0d8a3a55f64ffba9cb20209d455</id>
<content type='text'>
Ranges Algorithms Modernization - Of</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Ranges Algorithms Modernization - Of</pre>
</div>
</content>
</entry>
<entry>
<title>Modernize `std::any_of` with ranges</title>
<updated>2024-12-16T03:54:16+00:00</updated>
<author>
<name>mitaclaw</name>
<email>140017135+mitaclaw@users.noreply.github.com</email>
</author>
<published>2024-10-01T00:26:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=140252ffc0ae71e8b5309bff7d6550189c602702'/>
<id>140252ffc0ae71e8b5309bff7d6550189c602702</id>
<content type='text'>
In WiimoteReal.cpp, JitRegCache.cpp, lambda predicates were replaced by pointers to member functions because ranges algorithms are able invoke those.

In ConvertDialog.cpp, the `std::mem_fn` helper was removed because ranges algorithms are able to handle pointers to member functions as predicates.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In WiimoteReal.cpp, JitRegCache.cpp, lambda predicates were replaced by pointers to member functions because ranges algorithms are able invoke those.

In ConvertDialog.cpp, the `std::mem_fn` helper was removed because ranges algorithms are able to handle pointers to member functions as predicates.
</pre>
</div>
</content>
</entry>
<entry>
<title>VKSwapChain: Always use surface formats with a normal sRGB color space if not RGBA16F</title>
<updated>2024-12-04T01:49:50+00:00</updated>
<author>
<name>OatmealDome</name>
<email>julian@oatmealdome.me</email>
</author>
<published>2024-12-04T01:49:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=e6f335bfcf3179c5879f6d9ca688ecb360eda39d'/>
<id>e6f335bfcf3179c5879f6d9ca688ecb360eda39d</id>
<content type='text'>
Co-authored-by: TellowKrinkle &lt;tellowkrinkle@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Co-authored-by: TellowKrinkle &lt;tellowkrinkle@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #13104 from TellowKrinkle/MTLLogging</title>
<updated>2024-10-19T17:03:52+00:00</updated>
<author>
<name>JMC47</name>
<email>JMC4789@gmail.com</email>
</author>
<published>2024-10-19T17:03:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=e10821a84725959cbb3bf5b43ad8f72a4ff4e2bb'/>
<id>e10821a84725959cbb3bf5b43ad8f72a4ff4e2bb</id>
<content type='text'>
VideoBackends:Metal: Log file on failed pipeline compile</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
VideoBackends:Metal: Log file on failed pipeline compile</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #13090 from mitaclaw/ranges-modernization-1-trivial</title>
<updated>2024-10-15T15:08:55+00:00</updated>
<author>
<name>JosJuice</name>
<email>josjuice@gmail.com</email>
</author>
<published>2024-10-15T15:08:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=07605bf67c6815510688ebf3e71583624c3bfab0'/>
<id>07605bf67c6815510688ebf3e71583624c3bfab0</id>
<content type='text'>
Ranges Algorithms Modernization - Trivial</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Ranges Algorithms Modernization - Trivial</pre>
</div>
</content>
</entry>
</feed>
