Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
glslang
Manage
Activity
Members
Plan
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Repository 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
CodeLinaro
public-release-test-restored
platform
external
deqp-deps
glslang
Commits
ef764a24
Commit
ef764a24
authored
8 years ago
by
LoopDawg
Browse files
Options
Downloads
Patches
Plain Diff
Fix for empty statement segfault.
parent
9f1f8180
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Test/hlsl.intrinsics.vert
+3
-3
3 additions, 3 deletions
Test/hlsl.intrinsics.vert
hlsl/hlslGrammar.cpp
+2
-0
2 additions, 0 deletions
hlsl/hlslGrammar.cpp
with
5 additions
and
3 deletions
Test/hlsl.intrinsics.vert
+
3
−
3
View file @
ef764a24
...
...
@@ -298,7 +298,7 @@ float4 VertexShaderFunction(float4 inF0, float4 inF1, float4 inF2)
float2x2
VertexShaderFunction
(
float2x2
inF0
,
float2x2
inF1
,
float2x2
inF2
)
{
// TODO: FXC doesn't accept this with (), but glslang doesn't accept it without.
MATFNS
()
MATFNS
()
;
// TODO: ... add when float1 prototypes are generated
return
float2x2
(
2
,
2
,
2
,
2
);
...
...
@@ -307,7 +307,7 @@ float2x2 VertexShaderFunction(float2x2 inF0, float2x2 inF1, float2x2 inF2)
float3x3
VertexShaderFunction
(
float3x3
inF0
,
float3x3
inF1
,
float3x3
inF2
)
{
// TODO: FXC doesn't accept this with (), but glslang doesn't accept it without.
MATFNS
()
MATFNS
()
;
// TODO: ... add when float1 prototypes are generated
return
float3x3
(
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
,
3
);
...
...
@@ -316,7 +316,7 @@ float3x3 VertexShaderFunction(float3x3 inF0, float3x3 inF1, float3x3 inF2)
float4x4
VertexShaderFunction
(
float4x4
inF0
,
float4x4
inF1
,
float4x4
inF2
)
{
// TODO: FXC doesn't accept this with (), but glslang doesn't accept it without.
MATFNS
()
MATFNS
()
;
// TODO: ... add when float1 prototypes are generated
return
float4x4
(
4
,
4
,
4
,
4
,
4
,
4
,
4
,
4
,
4
,
4
,
4
,
4
,
4
,
4
,
4
,
4
);
...
...
This diff is collapsed.
Click to expand it.
hlsl/hlslGrammar.cpp
+
2
−
0
View file @
ef764a24
...
...
@@ -492,6 +492,8 @@ bool HlslGrammar::acceptFunctionDefinition(TFunction& function, TIntermNode*& no
//
bool
HlslGrammar
::
acceptExpression
(
TIntermTyped
*&
node
)
{
node
=
nullptr
;
// assignment_expression
if
(
!
acceptAssignmentExpression
(
node
))
return
false
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment