Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
PoroCYon
Bonzomatic
Commits
edcc7916
Commit
edcc7916
authored
Nov 10, 2019
by
PoroCYon
Committed by
Gargaj
Nov 10, 2019
Browse files
add shader error to 'vertex shader compilation failed' msg (#126)
parent
fc8c3bdf
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/platform_glfw/Renderer.cpp
View file @
edcc7916
...
...
@@ -345,7 +345,7 @@ namespace Renderer
glGetShaderiv
(
glhVertexShader
,
GL_COMPILE_STATUS
,
&
result
);
if
(
!
result
)
{
printf
(
"[Renderer] Vertex shader compilation failed
\n
"
);
printf
(
"[Renderer] Vertex shader compilation failed
\n
%s
\n
"
,
szErrorBuffer
);
return
false
;
}
...
...
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