Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpenFlipper
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
OpenFlipper-Free
OpenFlipper
Commits
95d4a559
Commit
95d4a559
authored
Sep 22, 2017
by
Martin Schultz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hotfix shader problem with screenquad shader on coreprofile
texture2D is deprecated
parent
7830c2e8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
Shaders/ScreenQuad/tex2D.glsl
Shaders/ScreenQuad/tex2D.glsl
+2
-2
No files found.
Shaders/ScreenQuad/tex2D.glsl
View file @
95d4a559
...
...
@@ -7,5 +7,5 @@ out vec4 oColor;
void
main
()
{
oColor
=
texture2D
(
Tex
,
vTexCoord
);
}
\ No newline at end of file
oColor
=
texture
(
Tex
,
vTexCoord
);
}
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