aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/GPU.cpp4
-rw-r--r--src/GPU2D.cpp3
-rw-r--r--src/libui_sdl/main.cpp4
-rw-r--r--src/libui_sdl/main_shaders.h24
4 files changed, 29 insertions, 6 deletions
diff --git a/src/GPU.cpp b/src/GPU.cpp
index 1799ef8..23e4fa8 100644
--- a/src/GPU.cpp
+++ b/src/GPU.cpp
@@ -254,7 +254,7 @@ void SetDisplaySettings(int topscale, int bottomscale, bool accel)
FBScale[0] = accel ? 0 : topscale;
int fbsize;
- if (accel) fbsize = (256*3 + 1) * 192;
+ if (accel) fbsize = (256*3 + 2) * 192;
else fbsize = (256 * 192) << (FBScale[0] * 2);
if (Framebuffer[0][0]) delete[] Framebuffer[0][0];
if (Framebuffer[1][0]) delete[] Framebuffer[1][0];
@@ -283,7 +283,7 @@ void SetDisplaySettings(int topscale, int bottomscale, bool accel)
FBScale[1] = accel ? 0 : bottomscale;
int fbsize;
- if (accel) fbsize = (256*3 + 1) * 192;
+ if (accel) fbsize = (256*3 + 2) * 192;
else fbsize = (256 * 192) << (FBScale[1] * 2);
if (Framebuffer[0][1]) delete[] Framebuffer[0][1];
if (Framebuffer[1][1]) delete[] Framebuffer[1][1];
diff --git a/src/GPU2D.cpp b/src/GPU2D.cpp
index 9ec240b..88436db 100644
--- a/src/GPU2D.cpp
+++ b/src/GPU2D.cpp
@@ -626,7 +626,7 @@ u32 GPU2D::ColorBrightnessDown(u32 val, u32 factor)
void GPU2D::DrawScanline(u32 line)
{
- int stride = Accelerated ? (256*3 + 1) : LineStride;
+ int stride = Accelerated ? (256*3 + 2) : LineStride;
u32* dst = &Framebuffer[stride * line];
int n3dline = line;
@@ -804,6 +804,7 @@ void GPU2D::DrawScanline(u32 line)
ctl |= (EVY << 26);
dst[256*3] = ctl;
+ dst[256*3 + 1] = MasterBrightness;
return;
}
diff --git a/src/libui_sdl/main.cpp b/src/libui_sdl/main.cpp
index f4a1fdb..27f0369 100644
--- a/src/libui_sdl/main.cpp
+++ b/src/libui_sdl/main.cpp
@@ -367,9 +367,9 @@ void GLDrawing_DrawScreen()
GL_UNSIGNED_BYTE, GPU::Framebuffer[frontbuf][0]);
glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 768, 256<<ScreenScale[1], 192<<ScreenScale[1], GL_RGBA_INTEGER,
GL_UNSIGNED_BYTE, GPU::Framebuffer[frontbuf][1]);*/
- glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, 256*3 + 1, 192, GL_RGBA_INTEGER,
+ glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, 256*3 + 2, 192, GL_RGBA_INTEGER,
GL_UNSIGNED_BYTE, GPU::Framebuffer[frontbuf][0]);
- glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 768, 256*3 + 1, 192, GL_RGBA_INTEGER,
+ glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 768, 256*3 + 2, 192, GL_RGBA_INTEGER,
GL_UNSIGNED_BYTE, GPU::Framebuffer[frontbuf][1]);
glActiveTexture(GL_TEXTURE1);
diff --git a/src/libui_sdl/main_shaders.h b/src/libui_sdl/main_shaders.h
index 5c9095e..d6d898d 100644
--- a/src/libui_sdl/main_shaders.h
+++ b/src/libui_sdl/main_shaders.h
@@ -65,13 +65,14 @@ out vec4 oColor;
void main()
{
ivec4 pixel = ivec4(texelFetch(ScreenTex, ivec2(fTexcoord), 0));
-ivec4 zog=pixel;
+
// bit0-13: BLDCNT
// bit14-15: DISPCNT display mode
// bit16-20: EVA
// bit21-25: EVB
// bit26-30: EVY
ivec4 ctl = ivec4(texelFetch(ScreenTex, ivec2(256*3, int(fTexcoord.y)), 0));
+ ivec4 mbright = ivec4(texelFetch(ScreenTex, ivec2(256*3 + 1, int(fTexcoord.y)), 0));
int dispmode = (ctl.g >> 6) & 0x3;
if (dispmode == 1)
@@ -182,6 +183,27 @@ ivec4 zog=pixel;
}
}
+ if (dispmode != 0)
+ {
+ int brightmode = mbright.g >> 6;
+ if (brightmode == 1)
+ {
+ // up
+ int evy = mbright.r & 0x1F;
+ if (evy > 16) evy = 16;
+
+ pixel += ((ivec4(0x3F,0x3F,0x3F,0) - pixel) * evy) >> 4;
+ }
+ else if (brightmode == 2)
+ {
+ // down
+ int evy = mbright.r & 0x1F;
+ if (evy > 16) evy = 16;
+
+ pixel -= (pixel * evy) >> 4;
+ }
+ }
+
pixel.rgb <<= 2;
pixel.rgb |= (pixel.rgb >> 6);