From 5fee62d7742c0ba88a17faee840a7e4e788a4bc9 Mon Sep 17 00:00:00 2001 From: Elad Lahav Date: Wed, 11 Jan 2023 08:26:23 -0500 Subject: [PATCH] Rename files under src/video/qnx --- src/video/qnx/{sdl_qnx.h => SDL_qnx.h} | 0 src/video/qnx/{gl.c => SDL_qnxgl.c} | 2 +- src/video/qnx/{keyboard.c => SDL_qnxkeyboard.c} | 2 +- src/video/qnx/{video.c => SDL_qnxvideo.c} | 2 +- 4 files changed, 3 insertions(+), 3 deletions(-) rename src/video/qnx/{sdl_qnx.h => SDL_qnx.h} (100%) rename src/video/qnx/{gl.c => SDL_qnxgl.c} (99%) rename src/video/qnx/{keyboard.c => SDL_qnxkeyboard.c} (99%) rename src/video/qnx/{video.c => SDL_qnxvideo.c} (99%) diff --git a/src/video/qnx/sdl_qnx.h b/src/video/qnx/SDL_qnx.h similarity index 100% rename from src/video/qnx/sdl_qnx.h rename to src/video/qnx/SDL_qnx.h diff --git a/src/video/qnx/gl.c b/src/video/qnx/SDL_qnxgl.c similarity index 99% rename from src/video/qnx/gl.c rename to src/video/qnx/SDL_qnxgl.c index a9338ba38a..b7003af3f1 100644 --- a/src/video/qnx/gl.c +++ b/src/video/qnx/SDL_qnxgl.c @@ -20,7 +20,7 @@ */ #include "../../SDL_internal.h" -#include "sdl_qnx.h" +#include "SDL_qnx.h" static EGLDisplay egl_disp; diff --git a/src/video/qnx/keyboard.c b/src/video/qnx/SDL_qnxkeyboard.c similarity index 99% rename from src/video/qnx/keyboard.c rename to src/video/qnx/SDL_qnxkeyboard.c index 485a5c70c4..d2d1a139b1 100644 --- a/src/video/qnx/keyboard.c +++ b/src/video/qnx/SDL_qnxkeyboard.c @@ -23,7 +23,7 @@ #include "../../events/SDL_keyboard_c.h" #include "SDL3/SDL_scancode.h" #include "SDL3/SDL_events.h" -#include "sdl_qnx.h" +#include "SDL_qnx.h" #include /** diff --git a/src/video/qnx/video.c b/src/video/qnx/SDL_qnxvideo.c similarity index 99% rename from src/video/qnx/video.c rename to src/video/qnx/SDL_qnxvideo.c index 270606fd3d..791bd3828a 100644 --- a/src/video/qnx/video.c +++ b/src/video/qnx/SDL_qnxvideo.c @@ -20,7 +20,7 @@ */ #include "../../SDL_internal.h" #include "../SDL_sysvideo.h" -#include "sdl_qnx.h" +#include "SDL_qnx.h" static screen_context_t context; static screen_event_t event;