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
5f316d9b
Commit
5f316d9b
authored
Jan 08, 2017
by
Alex Szpakowski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reorder initializer fields to match variable declaration order (or vice versa)…
Reorder initializer fields to match variable declaration order (or vice versa) for several class constructors.
parent
844dd45d
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
30 additions
and
29 deletions
+30
-29
iomapper.cpp
glslang/MachineIndependent/iomapper.cpp
+2
-2
localintermediate.h
glslang/MachineIndependent/localintermediate.h
+14
-13
PpContext.h
glslang/MachineIndependent/preprocessor/PpContext.h
+1
-1
propagateNoContraction.cpp
glslang/MachineIndependent/propagateNoContraction.cpp
+6
-6
reflection.h
glslang/MachineIndependent/reflection.h
+3
-3
hlslParseHelper.cpp
hlsl/hlslParseHelper.cpp
+4
-4
No files found.
glslang/MachineIndependent/iomapper.cpp
View file @
5f316d9b
...
...
@@ -168,8 +168,8 @@ public:
struct
TResolverAdaptor
{
TResolverAdaptor
(
EShLanguage
s
,
TIoMapResolver
&
r
,
TInfoSink
&
i
,
bool
&
e
)
:
resolver
(
r
)
,
stage
(
s
)
:
stage
(
s
)
,
resolver
(
r
)
,
infoSink
(
i
)
,
error
(
e
)
{
...
...
glslang/MachineIndependent/localintermediate.h
View file @
5f316d9b
...
...
@@ -139,22 +139,22 @@ class TVariable;
class
TIntermediate
{
public
:
explicit
TIntermediate
(
EShLanguage
l
,
int
v
=
0
,
EProfile
p
=
ENoProfile
)
:
source
(
EShSourceNone
),
language
(
l
),
profile
(
p
),
version
(
v
),
treeRoot
(
0
),
language
(
l
),
source
(
EShSourceNone
),
profile
(
p
),
version
(
v
),
treeRoot
(
0
),
numEntryPoints
(
0
),
numErrors
(
0
),
numPushConstants
(
0
),
recursive
(
false
),
invocations
(
TQualifier
::
layoutNotSet
),
vertices
(
TQualifier
::
layoutNotSet
),
inputPrimitive
(
ElgNone
),
outputPrimitive
(
ElgNone
),
pixelCenterInteger
(
false
),
originUpperLeft
(
false
),
vertexSpacing
(
EvsNone
),
vertexOrder
(
EvoNone
),
pointMode
(
false
),
earlyFragmentTests
(
false
),
depthLayout
(
EldNone
),
depthReplacing
(
false
),
blendEquations
(
0
),
multiStream
(
false
),
xfbMode
(
false
),
xfbMode
(
false
),
multiStream
(
false
),
#ifdef NV_EXTENSIONS
layoutOverrideCoverage
(
false
),
geoPassthroughEXT
(
false
),
#endif
shiftSamplerBinding
(
0
),
shiftTextureBinding
(
0
),
shiftImageBinding
(
0
),
shiftUboBinding
(
0
),
autoMapBindings
(
false
),
flattenUniformArrays
(
false
),
#ifdef NV_EXTENSIONS
layoutOverrideCoverage
(
false
),
geoPassthroughEXT
(
false
),
#endif
useUnknownFormat
(
false
)
{
localSize
[
0
]
=
1
;
...
...
@@ -422,13 +422,6 @@ protected:
EShSource
source
;
// source language, known a bit later
std
::
string
entryPointName
;
std
::
string
entryPointMangledName
;
unsigned
int
shiftSamplerBinding
;
unsigned
int
shiftTextureBinding
;
unsigned
int
shiftImageBinding
;
unsigned
int
shiftUboBinding
;
bool
autoMapBindings
;
bool
flattenUniformArrays
;
bool
useUnknownFormat
;
EProfile
profile
;
int
version
;
...
...
@@ -463,6 +456,14 @@ protected:
bool
geoPassthroughEXT
;
#endif
unsigned
int
shiftSamplerBinding
;
unsigned
int
shiftTextureBinding
;
unsigned
int
shiftImageBinding
;
unsigned
int
shiftUboBinding
;
bool
autoMapBindings
;
bool
flattenUniformArrays
;
bool
useUnknownFormat
;
typedef
std
::
list
<
TCall
>
TGraph
;
TGraph
callGraph
;
...
...
glslang/MachineIndependent/preprocessor/PpContext.h
View file @
5f316d9b
...
...
@@ -500,8 +500,8 @@ protected:
TPpContext
*
pp
)
:
tInput
(
pp
),
prologue_
(
prologue
),
includedFile_
(
includedFile
),
epilogue_
(
epilogue
),
includedFile_
(
includedFile
),
scanner
(
3
,
strings
,
lengths
,
names
,
0
,
0
,
true
),
prevScanner
(
nullptr
),
stringInput
(
pp
,
scanner
)
...
...
glslang/MachineIndependent/propagateNoContraction.cpp
View file @
5f316d9b
...
...
@@ -272,9 +272,9 @@ TSymbolDefinitionCollectingTraverser::TSymbolDefinitionCollectingTraverser(
ObjectAccesschainSet
*
precise_objects
,
std
::
unordered_set
<
glslang
::
TIntermBranch
*>*
precise_return_nodes
)
:
TIntermTraverser
(
true
,
false
,
false
),
symbol_definition_mapping_
(
*
symbol_definition_mapping
),
precise_objects_
(
*
precise_objects
),
current_object_
(
),
accesschain_mapping_
(
*
accesschain_mapping
),
current_function_definition_node_
(
nullptr
),
precise_return_nodes_
(
*
precise_return_nodes
)
{}
precise_objects_
(
*
precise_objects
),
precise_return_nodes_
(
*
precise_return_nodes
),
current_object_
(),
accesschain_mapping_
(
*
accesschain_mapping
),
current_function_definition_node_
(
nullptr
)
{}
// Visits a symbol node, set the current_object_ to the
// current node symbol ID, and record a mapping from this node to the current
...
...
@@ -616,9 +616,9 @@ class TNoContractionPropagator : public glslang::TIntermTraverser {
public
:
TNoContractionPropagator
(
ObjectAccesschainSet
*
precise_objects
,
const
AccessChainMapping
&
accesschain_mapping
)
:
TIntermTraverser
(
true
,
false
,
false
),
remained_accesschain_
(),
precise_objects_
(
*
precise_objects
),
a
ccesschain_mapping_
(
accesschain_mapping
),
added_precise_object_ids_
(
)
{}
:
TIntermTraverser
(
true
,
false
,
false
),
precise_objects_
(
*
precise_objects
),
a
dded_precise_object_ids_
(
),
remained_accesschain_
(),
accesschain_mapping_
(
accesschain_mapping
)
{}
// Propagates 'precise' in the right nodes of a given assignment node with
// access chain record from the assignee node to a 'precise' object it
...
...
glslang/MachineIndependent/reflection.h
View file @
5f316d9b
...
...
@@ -56,8 +56,8 @@ class TReflectionTraverser;
class
TObjectReflection
{
public
:
TObjectReflection
(
const
TString
&
pName
,
const
TType
&
pType
,
int
pOffset
,
int
pGLDefineType
,
int
pSize
,
int
pIndex
)
:
name
(
pName
),
type
(
pType
.
clone
()
),
offset
(
pOffset
),
glDefineType
(
pGLDefineType
),
size
(
pSize
),
index
(
pIndex
)
{
}
name
(
pName
),
offset
(
pOffset
),
glDefineType
(
pGLDefineType
),
size
(
pSize
),
index
(
pIndex
),
type
(
pType
.
clone
()
)
{
}
void
dump
()
const
{
printf
(
"%s: offset %d, type %x, size %d, index %d, binding %d
\n
"
,
...
...
@@ -81,7 +81,7 @@ protected:
return
type
->
getQualifier
().
layoutBinding
;
}
TObjectReflection
()
:
type
(
nullptr
),
offset
(
-
1
),
glDefineType
(
-
1
),
size
(
-
1
),
index
(
-
1
)
{
}
TObjectReflection
()
:
offset
(
-
1
),
glDefineType
(
-
1
),
size
(
-
1
),
index
(
-
1
),
type
(
nullptr
)
{
}
const
TType
*
type
;
};
...
...
hlsl/hlslParseHelper.cpp
View file @
5f316d9b
...
...
@@ -58,14 +58,14 @@ HlslParseContext::HlslParseContext(TSymbolTable& symbolTable, TIntermediate& int
TParseContextBase
(
symbolTable
,
interm
,
parsingBuiltins
,
version
,
profile
,
spvVersion
,
language
,
infoSink
,
forwardCompatible
,
messages
),
contextPragma
(
true
,
false
),
loopNestingLevel
(
0
),
annotationNestingLevel
(
0
),
structNestingLevel
(
0
),
controlFlowNestingLevel
(
0
),
inEntryPoint
(
false
),
postEntryPointReturn
(
false
),
limits
(
resources
.
limits
),
inEntryPoint
(
false
),
entryPointOutput
(
nullptr
),
nextInLocation
(
0
),
nextOutLocation
(
0
),
sourceEntryPointName
(
sourceEntryPointName
),
builtInIoIndex
(
nullptr
),
builtInIoBase
(
nullptr
)
builtInIoBase
(
nullptr
),
nextInLocation
(
0
),
nextOutLocation
(
0
),
sourceEntryPointName
(
sourceEntryPointName
)
{
globalUniformDefaults
.
clear
();
globalUniformDefaults
.
layoutMatrix
=
ElmRowMajor
;
...
...
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