From fdcc4f262c8ea3ab41daec2ea1b0753e9a4e40aa Mon Sep 17 00:00:00 2001 From: Ash Date: Tue, 16 Oct 2018 15:07:29 +1100 Subject: [PATCH] wiiu/render: move window-related functions to own file --- src/render/wiiu/SDL_render_wiiu.c | 10 ------- src/render/wiiu/SDL_rwindow_wiiu.c | 48 ++++++++++++++++++++++++++++++ 2 files changed, 48 insertions(+), 10 deletions(-) create mode 100644 src/render/wiiu/SDL_rwindow_wiiu.c diff --git a/src/render/wiiu/SDL_render_wiiu.c b/src/render/wiiu/SDL_render_wiiu.c index e02e11b20..039265d74 100644 --- a/src/render/wiiu/SDL_render_wiiu.c +++ b/src/render/wiiu/SDL_render_wiiu.c @@ -130,16 +130,6 @@ WIIU_CreateRenderer(SDL_Window * window, Uint32 flags) return renderer; } -static void -WIIU_WindowEvent(SDL_Renderer * renderer, const SDL_WindowEvent *event) -{ - if (event->event == SDL_WINDOWEVENT_SIZE_CHANGED) { - // Re-init the colour buffer etc. for new window size - // TODO check: what if we're rendering to a texture when this happens? - WIIU_SetRenderTarget(renderer, NULL); - } -} - static int WIIU_CreateTexture(SDL_Renderer * renderer, SDL_Texture * texture) { diff --git a/src/render/wiiu/SDL_rwindow_wiiu.c b/src/render/wiiu/SDL_rwindow_wiiu.c new file mode 100644 index 000000000..6ed6e693f --- /dev/null +++ b/src/render/wiiu/SDL_rwindow_wiiu.c @@ -0,0 +1,48 @@ +/* + Simple DirectMedia Layer + Copyright (C) 2018-2018 Ash Logan + Copyright (C) 2018-2018 Roberto Van Eeden + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +#include "../../SDL_internal.h" + +#if SDL_VIDEO_RENDER_WIIU + +#include "../../video/wiiu/wiiuvideo.h" +#include "../SDL_sysrender.h" +#include "SDL_hints.h" +#include "SDL_render_wiiu.h" + +#include +#include +#include +#include +#include + +static void +WIIU_WindowEvent(SDL_Renderer * renderer, const SDL_WindowEvent *event) +{ + if (event->event == SDL_WINDOWEVENT_SIZE_CHANGED) { + // Re-init the colour buffer etc. for new window size + // TODO check: what if we're rendering to a texture when this happens? + WIIU_SetRenderTarget(renderer, NULL); + } +} + +#endif //SDL_VIDEO_RENDER_WIIU