Skip to content

Commit

Permalink
Fix version
Browse files Browse the repository at this point in the history
  • Loading branch information
tx00100xt committed Nov 4, 2023
1 parent b8d1ab2 commit fae9e74
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 18 deletions.
11 changes: 2 additions & 9 deletions SamTFE/Sources/Engine/Graphics/Gfx_Vulkan.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,6 @@ SvkMain::SvkMain()
#endif
}


//############################################################################################
// initialize Vulkan driver
BOOL SvkMain::InitDriver_Vulkan()
{
Expand All @@ -177,9 +175,9 @@ BOOL SvkMain::InitDriver_Vulkan()
VkApplicationInfo appInfo = {};
appInfo.sType = VK_STRUCTURE_TYPE_APPLICATION_INFO;
appInfo.pApplicationName = "Serious Sam Classic App";
appInfo.applicationVersion = VK_MAKE_VERSION(1, 2, 170);
appInfo.applicationVersion = VK_MAKE_VERSION(1, 10, 6);
appInfo.pEngineName = "Serious Engine 1";
appInfo.engineVersion = VK_MAKE_VERSION(1, 2, 170);
appInfo.engineVersion = VK_MAKE_VERSION(1, 10, 6);
appInfo.apiVersion = VK_API_VERSION_1_2;


Expand Down Expand Up @@ -269,7 +267,6 @@ BOOL SvkMain::InitDriver_Vulkan()
// return FALSE;
}
#endif
//############################################################################################

#ifdef PLATFORM_WIN32
if (!InitSurface_Win32(hInstance, _hwndMain))
Expand Down Expand Up @@ -335,8 +332,6 @@ BOOL SvkMain::InitDriver_Vulkan()

return TRUE;
}
//############################################################################################


void SvkMain::EndDriver_Vulkan(void)
{
Expand Down Expand Up @@ -737,7 +732,6 @@ void SvkMain::SetViewport_Vulkan(float leftUpperX, float leftUpperY, float width
vkCmdSetScissor(GetCurrentCmdBuffer(), 0, 1, &gl_VkCurrentScissor);
}

//#############################################################################################
#ifdef PLATFORM_WIN32
BOOL SvkMain::InitSurface_Win32(HINSTANCE hinstance, HWND hwnd)
{
Expand All @@ -759,7 +753,6 @@ SDL_bool SvkMain::InitSurface_SDL(VkInstanceCreateInfo InstanceIn, SDL_Window *
return r;
}
#endif
//#############################################################################################

BOOL SvkMain::CreateDevice()
{
Expand Down
11 changes: 2 additions & 9 deletions SamTSE/Sources/Engine/Graphics/Gfx_Vulkan.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,6 @@ SvkMain::SvkMain()
#endif
}


//############################################################################################
// initialize Vulkan driver
BOOL SvkMain::InitDriver_Vulkan()
{
Expand All @@ -177,9 +175,9 @@ BOOL SvkMain::InitDriver_Vulkan()
VkApplicationInfo appInfo = {};
appInfo.sType = VK_STRUCTURE_TYPE_APPLICATION_INFO;
appInfo.pApplicationName = "Serious Sam Classic App";
appInfo.applicationVersion = VK_MAKE_VERSION(1, 2, 170);
appInfo.applicationVersion = VK_MAKE_VERSION(1, 10, 6);
appInfo.pEngineName = "Serious Engine 1";
appInfo.engineVersion = VK_MAKE_VERSION(1, 2, 170);
appInfo.engineVersion = VK_MAKE_VERSION(1, 10, 6);
appInfo.apiVersion = VK_API_VERSION_1_2;


Expand Down Expand Up @@ -269,7 +267,6 @@ BOOL SvkMain::InitDriver_Vulkan()
// return FALSE;
}
#endif
//############################################################################################

#ifdef PLATFORM_WIN32
if (!InitSurface_Win32(hInstance, _hwndMain))
Expand Down Expand Up @@ -335,8 +332,6 @@ BOOL SvkMain::InitDriver_Vulkan()

return TRUE;
}
//############################################################################################


void SvkMain::EndDriver_Vulkan(void)
{
Expand Down Expand Up @@ -737,7 +732,6 @@ void SvkMain::SetViewport_Vulkan(float leftUpperX, float leftUpperY, float width
vkCmdSetScissor(GetCurrentCmdBuffer(), 0, 1, &gl_VkCurrentScissor);
}

//#############################################################################################
#ifdef PLATFORM_WIN32
BOOL SvkMain::InitSurface_Win32(HINSTANCE hinstance, HWND hwnd)
{
Expand All @@ -759,7 +753,6 @@ SDL_bool SvkMain::InitSurface_SDL(VkInstanceCreateInfo InstanceIn, SDL_Window *
return r;
}
#endif
//#############################################################################################

BOOL SvkMain::CreateDevice()
{
Expand Down

0 comments on commit fae9e74

Please sign in to comment.