Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
glslang
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
glslang
Commits
5a7f0eff
Commit
5a7f0eff
authored
May 25, 2016
by
John Kessenich
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #230 from dekimir/incresconst
Make two more IncludeResult members const.
parents
7d814198
51eb91f2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
ShaderLang.h
glslang/Public/ShaderLang.h
+2
-2
No files found.
glslang/Public/ShaderLang.h
View file @
5a7f0eff
...
@@ -327,13 +327,13 @@ public:
...
@@ -327,13 +327,13 @@ public:
// include. For example, in a filesystem-based includer, full resolution
// include. For example, in a filesystem-based includer, full resolution
// should convert a relative path name into an absolute path name.
// should convert a relative path name into an absolute path name.
// For a failed inclusion, this is an empty string.
// For a failed inclusion, this is an empty string.
std
::
string
file_name
;
const
std
::
string
file_name
;
// The content and byte length of the requested inclusion. The
// The content and byte length of the requested inclusion. The
// Includer producing this IncludeResult retains ownership of the
// Includer producing this IncludeResult retains ownership of the
// storage.
// storage.
// For a failed inclusion, the file_data
// For a failed inclusion, the file_data
// field points to a string containing error details.
// field points to a string containing error details.
const
char
*
file_data
;
const
char
*
const
file_data
;
const
size_t
file_length
;
const
size_t
file_length
;
// Include resolver's context.
// Include resolver's context.
void
*
user_data
;
void
*
user_data
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment