2019-02-13 11:17:22 +00:00
|
|
|
// Copyright(c) 2019, NVIDIA CORPORATION. All rights reserved.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
//
|
|
|
|
// VulkanHpp Samples : 11_InitShaders
|
|
|
|
// Initialize vertex and fragment shaders
|
|
|
|
|
2019-03-19 14:35:08 +00:00
|
|
|
#include "../utils/shaders.hpp"
|
|
|
|
#include "../utils/utils.hpp"
|
2019-02-13 11:17:22 +00:00
|
|
|
#include "SPIRV/GlslangToSpv.h"
|
2020-04-12 19:49:12 +00:00
|
|
|
#include "vulkan/vulkan.hpp"
|
|
|
|
|
2019-03-05 07:59:40 +00:00
|
|
|
#include <iostream>
|
2019-02-13 11:17:22 +00:00
|
|
|
|
2020-04-12 19:49:12 +00:00
|
|
|
static char const * AppName = "11_InitShaders";
|
|
|
|
static char const * EngineName = "Vulkan.hpp";
|
2019-02-13 11:17:22 +00:00
|
|
|
|
2020-04-12 19:49:12 +00:00
|
|
|
int main( int /*argc*/, char ** /*argv*/ )
|
2019-02-13 11:17:22 +00:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2021-02-17 09:49:59 +00:00
|
|
|
vk::Instance instance = vk::su::createInstance( AppName, EngineName, {}, vk::su::getInstanceExtensions() );
|
2020-04-12 19:49:12 +00:00
|
|
|
#if !defined( NDEBUG )
|
2022-02-28 09:11:04 +00:00
|
|
|
vk::DebugUtilsMessengerEXT debugUtilsMessenger = instance.createDebugUtilsMessengerEXT( vk::su::makeDebugUtilsMessengerCreateInfoEXT() );
|
2019-03-05 07:59:40 +00:00
|
|
|
#endif
|
2019-02-13 11:17:22 +00:00
|
|
|
|
2021-02-17 09:49:59 +00:00
|
|
|
vk::PhysicalDevice physicalDevice = instance.enumeratePhysicalDevices().front();
|
2019-02-13 11:17:22 +00:00
|
|
|
|
2022-02-28 09:11:04 +00:00
|
|
|
uint32_t graphicsQueueFamilyIndex = vk::su::findGraphicsQueueFamilyIndex( physicalDevice.getQueueFamilyProperties() );
|
|
|
|
vk::Device device = vk::su::createDevice( physicalDevice, graphicsQueueFamilyIndex );
|
2019-02-13 11:17:22 +00:00
|
|
|
|
|
|
|
/* VULKAN_HPP_KEY_START */
|
|
|
|
|
|
|
|
glslang::InitializeProcess();
|
|
|
|
|
|
|
|
std::vector<unsigned int> vertexShaderSPV;
|
2021-09-06 08:32:06 +00:00
|
|
|
#if !defined( NDEBUG )
|
2022-02-28 09:11:04 +00:00
|
|
|
bool ok =
|
2021-09-06 08:32:06 +00:00
|
|
|
#endif
|
|
|
|
vk::su::GLSLtoSPV( vk::ShaderStageFlagBits::eVertex, vertexShaderText_PC_C, vertexShaderSPV );
|
2020-04-12 19:49:12 +00:00
|
|
|
assert( ok );
|
2019-02-13 11:17:22 +00:00
|
|
|
|
2020-07-08 08:58:37 +00:00
|
|
|
vk::ShaderModuleCreateInfo vertexShaderModuleCreateInfo( vk::ShaderModuleCreateFlags(), vertexShaderSPV );
|
2021-02-17 09:49:59 +00:00
|
|
|
vk::ShaderModule vertexShaderModule = device.createShaderModule( vertexShaderModuleCreateInfo );
|
2019-02-13 11:17:22 +00:00
|
|
|
|
|
|
|
std::vector<unsigned int> fragmentShaderSPV;
|
2021-09-06 08:32:06 +00:00
|
|
|
#if !defined( NDEBUG )
|
2022-02-28 09:11:04 +00:00
|
|
|
ok =
|
2021-09-06 08:32:06 +00:00
|
|
|
#endif
|
|
|
|
vk::su::GLSLtoSPV( vk::ShaderStageFlagBits::eFragment, fragmentShaderText_C_C, fragmentShaderSPV );
|
2020-04-12 19:49:12 +00:00
|
|
|
assert( ok );
|
2019-02-13 11:17:22 +00:00
|
|
|
|
2020-07-08 08:58:37 +00:00
|
|
|
vk::ShaderModuleCreateInfo fragmentShaderModuleCreateInfo( vk::ShaderModuleCreateFlags(), fragmentShaderSPV );
|
2021-02-17 09:49:59 +00:00
|
|
|
vk::ShaderModule fragmentShaderModule = device.createShaderModule( fragmentShaderModuleCreateInfo );
|
2019-02-13 11:17:22 +00:00
|
|
|
|
|
|
|
glslang::FinalizeProcess();
|
|
|
|
|
2021-02-17 09:49:59 +00:00
|
|
|
device.destroyShaderModule( fragmentShaderModule );
|
|
|
|
device.destroyShaderModule( vertexShaderModule );
|
2019-02-13 11:17:22 +00:00
|
|
|
|
|
|
|
/* VULKAN_HPP_KEY_END */
|
2021-02-17 09:49:59 +00:00
|
|
|
|
|
|
|
device.destroy();
|
2021-05-25 14:14:56 +00:00
|
|
|
#if !defined( NDEBUG )
|
2021-02-17 09:49:59 +00:00
|
|
|
instance.destroyDebugUtilsMessengerEXT( debugUtilsMessenger );
|
2021-05-25 14:14:56 +00:00
|
|
|
#endif
|
2021-02-17 09:49:59 +00:00
|
|
|
instance.destroy();
|
2019-02-13 11:17:22 +00:00
|
|
|
}
|
2020-04-12 19:49:12 +00:00
|
|
|
catch ( vk::SystemError & err )
|
2019-02-13 11:17:22 +00:00
|
|
|
{
|
|
|
|
std::cout << "vk::SystemError: " << err.what() << std::endl;
|
2020-04-12 19:49:12 +00:00
|
|
|
exit( -1 );
|
2019-02-13 11:17:22 +00:00
|
|
|
}
|
2020-07-08 08:58:37 +00:00
|
|
|
catch ( std::exception & err )
|
2019-02-13 11:17:22 +00:00
|
|
|
{
|
2020-07-08 08:58:37 +00:00
|
|
|
std::cout << "std::exception: " << err.what() << std::endl;
|
2020-04-12 19:49:12 +00:00
|
|
|
exit( -1 );
|
2019-02-13 11:17:22 +00:00
|
|
|
}
|
2020-04-12 19:49:12 +00:00
|
|
|
catch ( ... )
|
2019-02-13 11:17:22 +00:00
|
|
|
{
|
|
|
|
std::cout << "unknown error\n";
|
2020-04-12 19:49:12 +00:00
|
|
|
exit( -1 );
|
2019-02-13 11:17:22 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|