Michael Maltese

Results 46 issues of Michael Maltese

This fixes [Issue 9373: Depth issues on Mario Kart Double Dash](https://bugs.dolphin-emu.org/issues/9373). There seems to be some interaction between having `ocol1` in the fragment shader and calling `glBindFragDataLocationIndexed`: removing either one...

Fixing bug found in investigation of #119 The top-level source directory can't be added as an include directory because it creates a conflict with standard C++ header ``

Rewrote the triangle rasterizer from scratch, now supports textured triangles and ImGui anti-aliased mode (broken before). A bit faster too. Screenshot: Previously:

NumberNameNotes normal 0 DEACTIVATE ❌ Only when triggered by mesg writ or setv actv 0 1 ACTIVATE1 ❌ Only when triggered by mesg writ or setv actv 1 2 ACTIVATE2...

opencreatures1

See https://naturingnurturing.songua.com/2021-04-27%20--%20In%20Which%20I%20Try%20Compiling%20OpenC2E%20on%20Arch%20Linux.html - [x] Is this related to the Seamonkeys intermittent immediate crash? No, that was a background image tiling issue. - [x] Add code to automatically print stack traces...

```c++ if (v->hasFloat()) v->setFloat(v->getFloat() + (add.hasFloat() ? add.getFloat() : add.getInt())); else v->setInt((int)(v->getInt() + (add.hasFloat() ? add.getFloat() : add.getInt()))); ``` Is that right? This might be more likely: ```c++ if (v->hasFloat()...

See https://naturingnurturing.songua.com/2021-04-27%20--%20In%20Which%20I%20Try%20Compiling%20OpenC2E%20on%20Arch%20Linux.html [ ] Is it a case-insensitive/-sensitive filesystem issue? [ ] Do we have any Linux-specific filesystem code laying around? [ ] Should we do a sort of "sanity...

dstation-2020 uses a non-vanilla directory structure and writes a machine.cfg that points to the correct locations. Openc2e should support reading machine.cfg. See https://naturingnurturing.songua.com/2021-04-27%20--%20In%20Which%20I%20Try%20Compiling%20OpenC2E%20on%20Arch%20Linux.html [ ] CfgFileReader class [ ] Look...