09-12-2012, 10:01 AM
(07-04-2012, 01:10 PM)MadCabbit Wrote:(07-04-2012, 05:41 AM)hyakki Wrote: how exactly did you comment out re.enableFlag(GU_STENCIL_TEST); ? did you recompile it from source?..
your best bet for now its just to test on revision r2535 enable the settings like these, if that works you can attempt to modify the newer revisions with the change.
Code:|Video|
[ ] Disable VBO (automatically disabled if not supported)
[ ] Only GE graphics (not recommended for homebrew)
[ ] Use vertex cache
[x] Use shaders^experimental
[x] Use a Geometry Shader for 2D rendering (only relevant when using shaders)
[ ] Disable UBO (automatically disabled if not supported, only relevant when using shaders)
[ ] Enable VAO (only relevant when using shaders and vertex cache)
[ ] Enable saving GE screen to Textures instead of Memory
[ ] Enable decoding of indexed textures (using CLUT) in shader (only relevant when using shaders)
[ ] Enable dynamic shader generation (only relevant when using shaders, recommended for AMD/ATI)
[x] Enable the shader implementation for the 'Stencil Test' (more accurate but slower)
[ ] Enable the shader implementation for the 'Color Mask' (more accurate but slower)
[ ] Disable optimized Vertexlnfo reading (may improve compatibility)
[ ] Use Software Rendering (very experimental, not yet complete, slow)
|Memory|
[] Ignore invalid memory access (not recommended for test reports, but improves performance)!
[ ] Ignore unmapped imports (not recommended)
|Media|
[x] Use Media Engind
[ ] Extract media files to tmp folder
[x] Decode audio files with SonicStage (must be installed separately and requires Media Engine)
[ ] Use debug font (disable flashO fonts)
I changed
re.enableFlag(GU_STENCIL_TEST);
to
/* re.enableFlag(GU_STENCIL_TEST); */
I tried r2535 too, and had problems; I was only able to get 2490 working. I was using the settings in the first post, though. Using these settings, r2535 is working with the Stencil Test, and so is the latest, but it has the missing font bug. Is there any fix for that, or is it known what is the last revision that doesn't have this bug?
I was wondering if someone could give me a little insight on how to make the 're.enableFlag(GU_STENCIL_TEST)' change. I've tried everything I can think of but am not that fluent in Java. Any help is appreciated!