Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
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
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
4c0b1a50
Commit
4c0b1a50
authored
Jul 08, 2015
by
Matteo Bruni
Committed by
Alexandre Julliard
Jul 09, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Use GLSL 1.50 on core contexts.
parent
a1e718cc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
glsl_shader.c
dlls/wined3d/glsl_shader.c
+5
-4
No files found.
dlls/wined3d/glsl_shader.c
View file @
4c0b1a50
...
...
@@ -297,7 +297,9 @@ static const char *shader_glsl_get_prefix(enum wined3d_shader_type type)
static
const
char
*
shader_glsl_get_version
(
const
struct
wined3d_gl_info
*
gl_info
,
const
struct
wined3d_shader_version
*
version
)
{
if
(
gl_info
->
glsl_version
>=
MAKEDWORD_VERSION
(
1
,
30
)
&&
version
->
major
>=
4
)
if
(
!
gl_info
->
supported
[
WINED3D_GL_LEGACY_CONTEXT
])
return
"#version 150"
;
else
if
(
gl_info
->
glsl_version
>=
MAKEDWORD_VERSION
(
1
,
30
)
&&
version
&&
version
->
major
>=
4
)
return
"#version 130"
;
else
return
"#version 120"
;
...
...
@@ -5594,8 +5596,7 @@ static GLuint shader_glsl_generate_ffp_vertex_shader(struct wined3d_string_buffe
string_buffer_clear
(
buffer
);
shader_addline
(
buffer
,
"#version 120
\n
"
);
shader_addline
(
buffer
,
"
\n
"
);
shader_addline
(
buffer
,
"%s
\n
"
,
shader_glsl_get_version
(
gl_info
,
NULL
));
for
(
i
=
0
;
i
<
WINED3D_FFP_ATTRIBS_COUNT
;
++
i
)
{
...
...
@@ -6112,7 +6113,7 @@ static GLuint shader_glsl_generate_ffp_fragment_shader(struct shader_glsl_priv *
}
lowest_disabled_stage
=
stage
;
shader_addline
(
buffer
,
"
#version 120
\n
"
);
shader_addline
(
buffer
,
"
%s
\n
"
,
shader_glsl_get_version
(
gl_info
,
NULL
)
);
if
(
gl_info
->
supported
[
ARB_TEXTURE_RECTANGLE
])
shader_addline
(
buffer
,
"#extension GL_ARB_texture_rectangle : enable
\n
"
);
...
...
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