diff options
| author | iCatButler <i.am.catbutler@gmail.com> | 2016-05-31 15:38:18 +0100 |
|---|---|---|
| committer | iCatButler <i.am.catbutler@gmail.com> | 2016-05-31 15:38:18 +0100 |
| commit | b51d96c96d71bb8c9b789c63e43c19d94095305e (patch) | |
| tree | a9ab9b2107a8f78f2a24f8120d725808916f9f49 /plugins | |
| parent | a64d62be4b433fcad3804d3bb616bdf4f13504f4 (diff) | |
| download | pcsxr-b51d96c96d71bb8c9b789c63e43c19d94095305e.tar.gz | |
Fix screen smoothing
- Reset w values
- Set PGXP flag to ignore
Diffstat (limited to 'plugins')
| -rwxr-xr-x | plugins/peopsxgl/prim.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/plugins/peopsxgl/prim.c b/plugins/peopsxgl/prim.c index eb4b7f01..8ea7d71b 100755 --- a/plugins/peopsxgl/prim.c +++ b/plugins/peopsxgl/prim.c @@ -2553,6 +2553,13 @@ void DrawMultiBlur(void) fx=(float)PSXDisplay.DisplayMode.x/(float)(iResX); fy=(float)PSXDisplay.DisplayMode.y/(float)(iResY); + + for (unsigned int i = 0; i < 4; ++i) + { + vertex[i].PGXP_flag = 5; + vertex[i].w = 1.f; + } + vertex[0].x+=fx;vertex[1].x+=fx; vertex[2].x+=fx;vertex[3].x+=fx; |
