Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
VkCV Framework
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Vulkan2021
VkCV Framework
Merge requests
!115
Resolve "Slang Compiler"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Slang Compiler"
144-slang-compiler
into
develop
Overview
2
Commits
7
Pipelines
0
Changes
9
Merged
Tobias Frisch
requested to merge
144-slang-compiler
into
develop
1 year ago
Overview
2
Commits
7
Pipelines
0
Changes
9
Expand
Closes
#144 (closed)
0
0
Merge request reports
Viewing commit
f005b1a9
Prev
Next
Show latest version
9 files
+
197
−
159
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
9
Search (e.g. *.vue) (Ctrl+P)
Unverified
f005b1a9
Implement slang compiler
· f005b1a9
Jacki
authored
6 months ago
Signed-off-by:
Jacki
<
jacki@thejackimonster.de
>
modules/shader_compiler/include/vkcv/shader/Compiler.hpp
+
3
−
3
Options
@@ -84,11 +84,11 @@ namespace vkcv::shader {
* @param[in] includePath Include path for shaders
* @param[in] update Flag to update shaders during runtime
*/
virtual
void
compile
(
ShaderStage
shaderStage
,
void
compile
(
ShaderStage
shaderStage
,
const
std
::
filesystem
::
path
&
shaderPath
,
const
ShaderCompiledFunction
&
compiled
,
const
std
::
filesystem
::
path
&
includePath
,
bool
update
)
=
0
;
const
std
::
filesystem
::
path
&
includePath
=
""
,
bool
update
=
false
)
;
/**
* Compile a shader program from a specific map of given file paths for
Loading