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
55901efb
Commit
55901efb
authored
Sep 18, 2014
by
John Kessenich
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Nonfunctional: fix a typo.
git-svn-id:
https://cvs.khronos.org/svn/repos/ogl/trunk/ecosystem/public/sdk/tools/glslang@28194
e7fa87d3-cd2b-0410-9028-fcbf551c1848
parent
cf74ae1b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
InitializeDll.cpp
OGLCompilersDLL/InitializeDll.cpp
+1
-1
ParseHelper.cpp
glslang/MachineIndependent/ParseHelper.cpp
+2
-2
linkValidate.cpp
glslang/MachineIndependent/linkValidate.cpp
+1
-1
No files found.
OGLCompilersDLL/InitializeDll.cpp
View file @
55901efb
...
...
@@ -68,7 +68,7 @@ bool InitProcess()
}
if
(
!
InitializePoolIndex
())
{
assert
(
0
&&
"InitProcess(): Failed to initalize global pool"
);
assert
(
0
&&
"InitProcess(): Failed to init
i
alize global pool"
);
glslang
::
ReleaseGlobalLock
();
return
false
;
...
...
glslang/MachineIndependent/ParseHelper.cpp
View file @
55901efb
...
...
@@ -4020,7 +4020,7 @@ TVariable* TParseContext::declareNonArray(TSourceLoc loc, TString& identifier, T
// Handle all types of initializers from the grammar.
//
// Returning 0 just means there is no code to execute to handle the
// initializer, which will, for example, be the case for constant initalizers.
// initializer, which will, for example, be the case for constant init
i
alizers.
//
TIntermNode
*
TParseContext
::
executeInitializer
(
TSourceLoc
loc
,
TString
&
identifier
,
TIntermTyped
*
initializer
,
TVariable
*
variable
)
...
...
@@ -4104,7 +4104,7 @@ TIntermNode* TParseContext::executeInitializer(TSourceLoc loc, TString& identifi
}
//
// Reprocess any initalizer-list { ... } parts of the initializer.
// Reprocess any init
i
alizer-list { ... } parts of the initializer.
// Need to heirarchically assign correct types and implicit
// conversions. Will do this mimicking the same process used for
// creating a constructor-style initializer, ensuring we get the
...
...
glslang/MachineIndependent/linkValidate.cpp
View file @
55901efb
...
...
@@ -172,7 +172,7 @@ void TIntermediate::merge(TInfoSink& infoSink, TIntermediate& unit)
}
//
// Merge the function bodies and global-level initalizers from unitGlobals into globals.
// Merge the function bodies and global-level init
i
alizers from unitGlobals into globals.
// Will error check duplication of function bodies for the same signature.
//
void
TIntermediate
::
mergeBodies
(
TInfoSink
&
infoSink
,
TIntermSequence
&
globals
,
const
TIntermSequence
&
unitGlobals
)
...
...
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