fix postfx

This commit is contained in:
aap 2021-02-28 15:30:13 +01:00
parent 82245789ed
commit ce604c77ba
2 changed files with 11 additions and 0 deletions

View File

@ -49,6 +49,9 @@ CPostFX::InitOnce(void)
void
CPostFX::Open(RwCamera *cam)
{
if(pFrontBuffer)
Close();
uint32 width = Pow(2.0f, int32(log2(RwRasterGetWidth (RwCameraGetRaster(cam))))+1);
uint32 height = Pow(2.0f, int32(log2(RwRasterGetHeight(RwCameraGetRaster(cam))))+1);
uint32 depth = RwRasterGetDepth(RwCameraGetRaster(cam));

View File

@ -4,6 +4,7 @@
#include "Timecycle.h"
#include "skeleton.h"
#include "Debug.h"
#include "MBlur.h"
#if !defined(FINAL) || defined(DEBUGMENU)
#include "rtcharse.h"
#endif
@ -608,6 +609,13 @@ CameraSize(RwCamera * camera, RwRect * rect,
RsGlobal.width = rect->w;
RsGlobal.height = rect->h;
#ifdef FIX_BUGS
if(CMBlur::BlurOn){
CMBlur::MotionBlurClose();
CMBlur::MotionBlurOpen(camera);
}
#endif
}
return;