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
6334d594
Unverified
Commit
6334d594
authored
Dec 29, 2019
by
John Kessenich
Committed by
GitHub
Dec 29, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1997 from ShchchowAMD/ARB_uniform_buffer_object
Add support for ARB_uniform_buffer_object
parents
18fb7f24
930403e5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
19 additions
and
2 deletions
+19
-2
120.vert
Test/120.vert
+13
-0
120.vert.out
Test/baseResults/120.vert.out
+2
-1
ParseHelper.cpp
glslang/MachineIndependent/ParseHelper.cpp
+1
-1
Versions.cpp
glslang/MachineIndependent/Versions.cpp
+2
-0
Versions.h
glslang/MachineIndependent/Versions.h
+1
-0
No files found.
Test/120.vert
View file @
6334d594
...
...
@@ -201,3 +201,15 @@ int mac;
#define macr(A,B) A ## B
int
macr
(
qrs
,
tuv
);
layout
(
std140
)
uniform
BlockName
// ERROR
{
int
test
;
};
#extension GL_ARB_uniform_buffer_object : enable
layout
(
std140
)
uniform
BlockName
{
int
test
;
};
\ No newline at end of file
Test/baseResults/120.vert.out
View file @
6334d594
...
...
@@ -79,7 +79,8 @@ ERROR: 0:192: 'assign' : l-value required (can't modify a const)
ERROR: 0:195: 'gl_ModelViewMatrix' : identifiers starting with "gl_" are reserved
ERROR: 0:200: 'token pasting (##)' : not supported for this version or the enabled extensions
ERROR: 0:203: 'token pasting (##)' : not supported for this version or the enabled extensions
ERROR: 80 compilation errors. No code generated.
ERROR: 0:205: '' : syntax error, unexpected IDENTIFIER
ERROR: 81 compilation errors. No code generated.
Shader version: 120
...
...
glslang/MachineIndependent/ParseHelper.cpp
View file @
6334d594
...
...
@@ -7613,7 +7613,7 @@ void TParseContext::blockStageIoCheck(const TSourceLoc& loc, const TQualifier& q
switch
(
qualifier
.
storage
)
{
case
EvqUniform
:
profileRequires
(
loc
,
EEsProfile
,
300
,
nullptr
,
"uniform block"
);
profileRequires
(
loc
,
ENoProfile
,
140
,
nullptr
,
"uniform block"
);
profileRequires
(
loc
,
ENoProfile
,
140
,
E_GL_ARB_uniform_buffer_object
,
"uniform block"
);
if
(
currentBlockQualifier
.
layoutPacking
==
ElpStd430
&&
!
currentBlockQualifier
.
isPushConstant
())
requireExtensions
(
loc
,
1
,
&
E_GL_EXT_scalar_block_layout
,
"std430 requires the buffer storage qualifier"
);
break
;
...
...
glslang/MachineIndependent/Versions.cpp
View file @
6334d594
...
...
@@ -193,6 +193,7 @@ void TParseVersions::initializeExtensionBehavior()
extensionBehavior
[
E_GL_ARB_shader_viewport_layer_array
]
=
EBhDisable
;
extensionBehavior
[
E_GL_ARB_fragment_shader_interlock
]
=
EBhDisable
;
extensionBehavior
[
E_GL_ARB_shader_clock
]
=
EBhDisable
;
extensionBehavior
[
E_GL_ARB_uniform_buffer_object
]
=
EBhDisable
;
extensionBehavior
[
E_GL_ARB_sample_shading
]
=
EBhDisable
;
extensionBehavior
[
E_GL_KHR_shader_subgroup_basic
]
=
EBhDisable
;
...
...
@@ -401,6 +402,7 @@ void TParseVersions::getPreamble(std::string& preamble)
// "#define GL_ARB_cull_distance 1\n" // present for 4.5, but need extension control over block members
"#define GL_ARB_post_depth_coverage 1
\n
"
"#define GL_ARB_fragment_shader_interlock 1
\n
"
"#define GL_ARB_uniform_buffer_object 1
\n
"
"#define GL_EXT_shader_non_constant_global_initializers 1
\n
"
"#define GL_EXT_shader_image_load_formatted 1
\n
"
"#define GL_EXT_post_depth_coverage 1
\n
"
...
...
glslang/MachineIndependent/Versions.h
View file @
6334d594
...
...
@@ -145,6 +145,7 @@ const char* const E_GL_ARB_post_depth_coverage = "GL_ARB_post_depth_cov
const
char
*
const
E_GL_ARB_shader_viewport_layer_array
=
"GL_ARB_shader_viewport_layer_array"
;
const
char
*
const
E_GL_ARB_fragment_shader_interlock
=
"GL_ARB_fragment_shader_interlock"
;
const
char
*
const
E_GL_ARB_shader_clock
=
"GL_ARB_shader_clock"
;
const
char
*
const
E_GL_ARB_uniform_buffer_object
=
"GL_ARB_uniform_buffer_object"
;
const
char
*
const
E_GL_ARB_sample_shading
=
"GL_ARB_sample_shading"
;
const
char
*
const
E_GL_KHR_shader_subgroup_basic
=
"GL_KHR_shader_subgroup_basic"
;
...
...
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