mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2025-02-17 01:21:12 +00:00
Fix headers names
This commit is contained in:
parent
c9fae86cbe
commit
b1bd71ec7e
23 changed files with 22 additions and 22 deletions
|
@ -88,7 +88,7 @@ typedef enum
|
|||
rserr_unknown
|
||||
} rserr_t;
|
||||
|
||||
#include "vk_model.h"
|
||||
#include "model.h"
|
||||
|
||||
#define MAX_LBM_HEIGHT 480
|
||||
|
|
@ -30,8 +30,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|||
#endif
|
||||
|
||||
#include <vulkan/vulkan.h>
|
||||
#include "vk_util.h"
|
||||
#include "vk_shaders.h"
|
||||
#include "util.h"
|
||||
#include "shaders.h"
|
||||
|
||||
// Vulkan device
|
||||
typedef struct
|
||||
|
|
|
@ -18,7 +18,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|||
|
||||
*/
|
||||
|
||||
#include "header/vk_local.h"
|
||||
#include "header/local.h"
|
||||
|
||||
// internal helper
|
||||
static void copyBuffer(const VkBuffer *src, VkBuffer *dst, VkDeviceSize size)
|
||||
|
|
|
@ -18,7 +18,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|||
|
||||
*/
|
||||
|
||||
#include "header/vk_local.h"
|
||||
#include "header/local.h"
|
||||
|
||||
VkResult QVk_BeginCommand(const VkCommandBuffer *commandBuffer)
|
||||
{
|
||||
|
|
|
@ -29,7 +29,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|||
** QVk_Shutdown() - unloads libraries, NULLs function pointers
|
||||
*/
|
||||
#include <float.h>
|
||||
#include "header/vk_local.h"
|
||||
#include "header/local.h"
|
||||
|
||||
// Vulkan instance, surface and memory allocator
|
||||
VkInstance vk_instance = VK_NULL_HANDLE;
|
||||
|
|
|
@ -18,7 +18,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|||
|
||||
*/
|
||||
|
||||
#include "header/vk_local.h"
|
||||
#include "header/local.h"
|
||||
|
||||
// internal helper
|
||||
static qboolean deviceExtensionsSupported(const VkPhysicalDevice *physicalDevice)
|
||||
|
|
|
@ -21,7 +21,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|||
|
||||
// vk_draw.c
|
||||
|
||||
#include "header/vk_local.h"
|
||||
#include "header/local.h"
|
||||
|
||||
static image_t *draw_chars;
|
||||
|
||||
|
|
|
@ -19,7 +19,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|||
|
||||
*/
|
||||
|
||||
#include "header/vk_local.h"
|
||||
#include "header/local.h"
|
||||
|
||||
image_t vktextures[MAX_VKTEXTURES];
|
||||
int numvktextures;
|
||||
|
|
|
@ -20,7 +20,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|||
*/
|
||||
// vk_light.c
|
||||
|
||||
#include "header/vk_local.h"
|
||||
#include "header/local.h"
|
||||
|
||||
static int r_dlightframecount;
|
||||
|
||||
|
|
|
@ -20,7 +20,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|||
*/
|
||||
// vk_mesh.c: triangle model functions
|
||||
|
||||
#include "header/vk_local.h"
|
||||
#include "header/local.h"
|
||||
|
||||
/*
|
||||
=============================================================
|
||||
|
|
|
@ -20,7 +20,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|||
*/
|
||||
// vk_model.c -- model loading and caching
|
||||
|
||||
#include "header/vk_local.h"
|
||||
#include "header/local.h"
|
||||
|
||||
model_t *loadmodel;
|
||||
int modfilelen;
|
||||
|
|
|
@ -18,7 +18,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|||
|
||||
*/
|
||||
|
||||
#include "header/vk_local.h"
|
||||
#include "header/local.h"
|
||||
|
||||
qvkshader_t QVk_CreateShader(const uint32_t *shaderSrc, size_t shaderCodeSize, VkShaderStageFlagBits shaderStage)
|
||||
{
|
||||
|
|
|
@ -20,7 +20,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|||
*/
|
||||
// vk_rmain.c
|
||||
|
||||
#include "header/vk_local.h"
|
||||
#include "header/local.h"
|
||||
|
||||
#define REF_VERSION "Yamagi Quake II Vulkan Refresher (based on vkQuake2 v1.4.3)"
|
||||
|
||||
|
|
|
@ -20,7 +20,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|||
*/
|
||||
// vk_misc.c
|
||||
|
||||
#include "header/vk_local.h"
|
||||
#include "header/local.h"
|
||||
|
||||
/*
|
||||
==================
|
||||
|
|
|
@ -21,7 +21,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|||
// vk_rsurf.c: surface-related refresh code
|
||||
#include <assert.h>
|
||||
|
||||
#include "header/vk_local.h"
|
||||
#include "header/local.h"
|
||||
|
||||
static vec3_t modelorg; // relative to viewpoint
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|||
|
||||
*/
|
||||
|
||||
#include "header/vk_shaders.h"
|
||||
#include "header/shaders.h"
|
||||
|
||||
// ingame shaders stored as uint32_t arrays (autogenerated by glslangValidator)
|
||||
#include "spirv/basic_vert.c"
|
||||
|
|
|
@ -18,7 +18,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|||
|
||||
*/
|
||||
|
||||
#include "header/vk_local.h"
|
||||
#include "header/local.h"
|
||||
|
||||
// internal helper
|
||||
static const char *presentModeString(VkPresentModeKHR presentMode)
|
||||
|
|
|
@ -16,8 +16,8 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
|||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*/
|
||||
|
||||
#include "header/vk_util.h"
|
||||
#include "header/vk_local.h"
|
||||
#include "header/util.h"
|
||||
#include "header/local.h"
|
||||
|
||||
#include <assert.h>
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|||
|
||||
*/
|
||||
|
||||
#include "header/vk_local.h"
|
||||
#include "header/local.h"
|
||||
|
||||
static VkDebugUtilsMessengerEXT validationMessenger = VK_NULL_HANDLE;
|
||||
|
||||
|
|
|
@ -19,7 +19,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|||
|
||||
*/
|
||||
// vk_warp.c -- sky and water polygons
|
||||
#include "header/vk_local.h"
|
||||
#include "header/local.h"
|
||||
|
||||
extern model_t *loadmodel;
|
||||
|
||||
|
|
Loading…
Reference in a new issue