Fix headers names

This commit is contained in:
Denis Pauk 2020-03-15 16:50:05 +02:00 committed by Yamagi
parent c9fae86cbe
commit b1bd71ec7e
23 changed files with 22 additions and 22 deletions

View file

@ -88,7 +88,7 @@ typedef enum
rserr_unknown
} rserr_t;
#include "vk_model.h"
#include "model.h"
#define MAX_LBM_HEIGHT 480

View file

@ -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

View file

@ -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)

View file

@ -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)
{

View file

@ -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;

View file

@ -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)

View file

@ -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;

View file

@ -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;

View file

@ -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;

View file

@ -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"
/*
=============================================================

View file

@ -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;

View file

@ -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)
{

View file

@ -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)"

View file

@ -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"
/*
==================

View file

@ -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

View file

@ -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"

View file

@ -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)

View file

@ -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>

View file

@ -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;

View file

@ -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;