隐藏VKShaderParse.h到src目录

This commit is contained in:
hyzboy 2019-05-05 21:42:15 +08:00
parent 9425a2a91e
commit c8131db208
4 changed files with 4 additions and 4 deletions

View File

@ -19,7 +19,6 @@
${ROOT_INCLUDE_PATH}/hgl/graph/vulkan/VKSemaphore.h
${ROOT_INCLUDE_PATH}/hgl/graph/vulkan/VKShaderModule.h
${ROOT_INCLUDE_PATH}/hgl/graph/vulkan/VKShaderModuleManage.h
${ROOT_INCLUDE_PATH}/hgl/graph/vulkan/VKShaderParse.h
${ROOT_INCLUDE_PATH}/hgl/graph/vulkan/VKSurfaceExtensionName.h
${ROOT_INCLUDE_PATH}/hgl/graph/vulkan/VKVertexAttributeBinding.h)
@ -37,6 +36,7 @@ SET(RENDER_DEVICE_VULKAN_SOURCE VKFormat.cpp
VKDescriptorSetLayoutCreater.cpp
VKDescriptorSetLayoutCreater.h
VKRenderPass.cpp
VKShaderParse.h
VKShaderModule.cpp
VKShaderModuleManage.cpp
VKVertexAttributeBinding.cpp

View File

@ -1,6 +1,6 @@
#include<hgl/graph/vulkan/VKShaderModule.h>
#include<hgl/graph/vulkan/VKVertexAttributeBinding.h>
#include<hgl/graph/vulkan/VKShaderParse.h>
#include"VKShaderParse.h"
VK_NAMESPACE_BEGIN
ShaderModule::ShaderModule(VkDevice dev,int id,VkPipelineShaderStageCreateInfo *sci,const ShaderParse *sp)

View File

@ -2,7 +2,7 @@
#include<hgl/graph/vulkan/VKShaderModule.h>
#include<hgl/graph/vulkan/VKMaterial.h>
#include<hgl/graph/vulkan/VKDevice.h>
#include<hgl/graph/vulkan/VKShaderParse.h>
#include"VKShaderParse.h"
#include<hgl/filesystem/FileSystem.h>
VK_NAMESPACE_BEGIN