VK: remove unused init function declaration

This commit is contained in:
Megamouse
2020-01-03 12:00:17 +01:00
parent d12762414a
commit c9aee27d48
3 changed files with 5 additions and 9 deletions
-1
View File
@@ -279,7 +279,6 @@ error_code cellMsgDialogOpen2(u32 type, vm::cptr<char> msgString, vm::ptr<CellMs
cellSysutil.error("%s", msgString); cellSysutil.error("%s", msgString);
} }
return open_msg_dialog(false, type, msgString, callback, userData, extParam); return open_msg_dialog(false, type, msgString, callback, userData, extParam);
} }
+4 -2
View File
@@ -6,7 +6,8 @@
#include "Utilities/StrUtil.h" #include "Utilities/StrUtil.h"
#include "Utilities/types.h" #include "Utilities/types.h"
enum class FUNCTION { enum class FUNCTION
{
FUNCTION_DP2, FUNCTION_DP2,
FUNCTION_DP2A, FUNCTION_DP2A,
FUNCTION_DP3, FUNCTION_DP3,
@@ -47,7 +48,8 @@ enum class FUNCTION {
FUNCTION_TEXTURE_SAMPLE2D_DEPTH_RGBA FUNCTION_TEXTURE_SAMPLE2D_DEPTH_RGBA
}; };
enum class COMPARE { enum class COMPARE
{
FUNCTION_SEQ, FUNCTION_SEQ,
FUNCTION_SGE, FUNCTION_SGE,
FUNCTION_SGT, FUNCTION_SGT,
+1 -6
View File
@@ -1,4 +1,4 @@
#pragma once #pragma once
#ifdef _WIN32 #ifdef _WIN32
#define VK_USE_PLATFORM_WIN32_KHR #define VK_USE_PLATFORM_WIN32_KHR
@@ -13,8 +13,3 @@
#include <vulkan/vk_sdk_platform.h> #include <vulkan/vk_sdk_platform.h>
#include "define_new_memleakdetect.h" #include "define_new_memleakdetect.h"
#include "Utilities/types.h" #include "Utilities/types.h"
namespace vk
{
void init();
}