mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-04-02 10:42:14 -04:00
This is a long-term stable release. A full changelog will be available at the forum link below later in the day. Also, please note that I have merged all of the various distributions into two packages. The Windows binary package now contains both the profile-optimized (fast) build, and the debugger build. The source code package now contains sources for bsnes, snesreader, snesfilter and supergameboy. Changelog: - added Direct3D HLSL pixel shader support [mudlord] - fixed a signal issue that caused loading games to take 1-2 seconds longer in v059 - 21fx API revised to its final form, S-MSU (public documentation pending) - worked around QTBUG-7188 to fix multi-file 7-zip file listbox to update when scrolling - added scale max - normal, wide, and wide zoom modes to fullscreen mode - added overscan cropping tool (needed for wide zoom mode; useful for developers simulating games on a real TV) - added "go up one folder" button to file load dialog - added group (un)assignment to the input settings window - now honors input.allowInvalidInput setting; defaults to false [Jonas Quinn] - cheat code editor grays out empty slots - cheat code editor adds "clear selected" button to quickly erase multiple cheat codes - to load folders as game images, folders must end in .sfc, .bs, .st, .gb now - debugger: added S-CPU (H)DMA registers; S-SMP registers; S-DSP registers to properties list - snesfilter: HQ2x filter is now multi-threaded (scales infinitely: the more cores you have, the less overhead required) - pixelshaders: added screen curvature shader to simulate curved CRT tubes - source: lots of code cleanup, as always
28 lines
1 KiB
Text
28 lines
1 KiB
Text
//Scale2x GLSL shader
|
|
//license: GPL
|
|
//original version by Pete Bernert
|
|
//ruby port by byuu
|
|
|
|
uniform sampler2D rubyTexture;
|
|
uniform vec2 rubyTextureSize;
|
|
|
|
void main() {
|
|
vec4 colD, colF, colB, colH, col, tmp;
|
|
vec2 sel;
|
|
|
|
col = texture2DProj(rubyTexture, gl_TexCoord[0]); //central (can be E0-E3)
|
|
colD = texture2DProj(rubyTexture, gl_TexCoord[1]); //D (left)
|
|
colF = texture2DProj(rubyTexture, gl_TexCoord[2]); //F (right)
|
|
colB = texture2DProj(rubyTexture, gl_TexCoord[3]); //B (top)
|
|
colH = texture2DProj(rubyTexture, gl_TexCoord[4]); //H (bottom)
|
|
|
|
sel = fract(gl_TexCoord[0].xy * rubyTextureSize.xy); //where are we (E0-E3)?
|
|
//E0 is default
|
|
if(sel.y >= 0.5) { tmp = colB; colB = colH; colH = tmp; } //E1 (or E3): swap B and H
|
|
if(sel.x >= 0.5) { tmp = colF; colF = colD; colD = tmp; } //E2 (or E3): swap D and F
|
|
|
|
if(colB == colD && colB != colF && colD != colH) { //do the Scale2x rule
|
|
col = colD;
|
|
}
|
|
|
|
gl_FragColor = col;
|
|
}
|