diff options
author | Nitrus | 2018-11-20 18:57:57 +0100 |
---|---|---|
committer | David Turner | 2018-11-21 07:54:49 +0000 |
commit | 4d84105237d00adc8ad49248cca729833b0d167a (patch) | |
tree | 1f3675f312f4e747e6e4775912a7718ebf8b4553 /backends/platform | |
parent | 2122c07d5fdddbb1c28dd7dd17fa8c1df1a4c28f (diff) | |
download | scummvm-rg350-4d84105237d00adc8ad49248cca729833b0d167a.tar.gz scummvm-rg350-4d84105237d00adc8ad49248cca729833b0d167a.tar.bz2 scummvm-rg350-4d84105237d00adc8ad49248cca729833b0d167a.zip |
3DS: Fix deprecated C3D methods
Diffstat (limited to 'backends/platform')
-rw-r--r-- | backends/platform/3ds/osystem-graphics.cpp | 14 | ||||
-rw-r--r-- | backends/platform/3ds/sprite.cpp | 4 |
2 files changed, 9 insertions, 9 deletions
diff --git a/backends/platform/3ds/osystem-graphics.cpp b/backends/platform/3ds/osystem-graphics.cpp index e791dd4c21..777272e1d9 100644 --- a/backends/platform/3ds/osystem-graphics.cpp +++ b/backends/platform/3ds/osystem-graphics.cpp @@ -45,13 +45,13 @@ void OSystem_3DS::initGraphics() { // Initialize the render targets _renderTargetTop = C3D_RenderTargetCreate(240, 400, GPU_RB_RGBA8, GPU_RB_DEPTH24_STENCIL8); - C3D_RenderTargetSetClear(_renderTargetTop, C3D_CLEAR_ALL, 0x0000000, 0); + C3D_RenderTargetClear(_renderTargetTop, C3D_CLEAR_ALL, 0x0000000, 0); C3D_RenderTargetSetOutput(_renderTargetTop, GFX_TOP, GFX_LEFT, DISPLAY_TRANSFER_FLAGS); _renderTargetBottom = C3D_RenderTargetCreate(240, 320, GPU_RB_RGBA8, GPU_RB_DEPTH24_STENCIL8); - C3D_RenderTargetSetClear(_renderTargetBottom, C3D_CLEAR_ALL, 0x00000000, 0); + C3D_RenderTargetClear(_renderTargetBottom, C3D_CLEAR_ALL, 0x00000000, 0); C3D_RenderTargetSetOutput(_renderTargetBottom, GFX_BOTTOM, GFX_LEFT, DISPLAY_TRANSFER_FLAGS); @@ -69,12 +69,12 @@ void OSystem_3DS::initGraphics() { AttrInfo_AddLoader(attrInfo, 0, GPU_FLOAT, 3); // v0=position AttrInfo_AddLoader(attrInfo, 1, GPU_FLOAT, 2); // v1=texcoord - Mtx_OrthoTilt(&_projectionTop, 0.0, 400.0, 240.0, 0.0, 0.0, 1.0); - Mtx_OrthoTilt(&_projectionBottom, 0.0, 320.0, 240.0, 0.0, 0.0, 1.0); + Mtx_OrthoTilt(&_projectionTop, 0.0, 400.0, 240.0, 0.0, 0.0, 1.0, true); + Mtx_OrthoTilt(&_projectionBottom, 0.0, 320.0, 240.0, 0.0, 0.0, 1.0, true); C3D_TexEnv *env = C3D_GetTexEnv(0); - C3D_TexEnvSrc(env, C3D_Both, GPU_TEXTURE0, 0, 0); - C3D_TexEnvOp(env, C3D_Both, 0, 0, 0); + C3D_TexEnvSrc(env, C3D_Both, GPU_TEXTURE0, GPU_PRIMARY_COLOR, GPU_PRIMARY_COLOR); + C3D_TexEnvOpRgb(env, GPU_TEVOP_RGB_SRC_COLOR, GPU_TEVOP_RGB_SRC_COLOR, GPU_TEVOP_RGB_SRC_COLOR); C3D_TexEnvFunc(env, C3D_Both, GPU_REPLACE); C3D_DepthTest(false, GPU_GEQUAL, GPU_WRITE_ALL); @@ -387,7 +387,7 @@ void OSystem_3DS::updateFocus() { _focusScaleY += _focusStepScaleY; Mtx_Identity(&_focusMatrix); - Mtx_Translate(&_focusMatrix, -_focusPosX, -_focusPosY, 0); + Mtx_Translate(&_focusMatrix, -_focusPosX, -_focusPosY, 0, true); Mtx_Scale(&_focusMatrix, _focusScaleX, _focusScaleY, 1.f); } } diff --git a/backends/platform/3ds/sprite.cpp b/backends/platform/3ds/sprite.cpp index 7d860743a2..ec9e94f333 100644 --- a/backends/platform/3ds/sprite.cpp +++ b/backends/platform/3ds/sprite.cpp @@ -104,8 +104,8 @@ void Sprite::render() { if (dirtyPixels) { dirtyPixels = false; GSPGPU_FlushDataCache(pixels, w * h * format.bytesPerPixel); - C3D_SafeDisplayTransfer((u32*)pixels, GX_BUFFER_DIM(w, h), (u32*)texture.data, GX_BUFFER_DIM(w, h), TEXTURE_TRANSFER_FLAGS); gspWaitForPPF(); + C3D_SyncDisplayTransfer((u32*)pixels, GX_BUFFER_DIM(w, h), (u32*)texture.data, GX_BUFFER_DIM(w, h), TEXTURE_TRANSFER_FLAGS); } C3D_TexBind(0, &texture); @@ -137,7 +137,7 @@ C3D_Mtx* Sprite::getMatrix() { dirtyMatrix = false; Mtx_Identity(&modelview); Mtx_Scale(&modelview, scaleX, scaleY, 1.f); - Mtx_Translate(&modelview, posX, posY, 0); + Mtx_Translate(&modelview, posX, posY, 0, true); } return &modelview; } |