Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Multimedia
Kdenlive
Commits
c04ff48b
Commit
c04ff48b
authored
Jan 11, 2022
by
Jean-Baptiste Mardelle
Browse files
Fix extract frame on Windows (also used for Titler and scopes)
Fixes
#596
parent
f895e5ab
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/monitor/glwidget.cpp
View file @
c04ff48b
...
...
@@ -584,8 +584,6 @@ void GLWidget::paintGL()
if
((
m_fbo
==
nullptr
)
||
m_fbo
->
size
()
!=
m_profileSize
)
{
delete
m_fbo
;
QOpenGLFramebufferObjectFormat
fmt
;
fmt
.
setSamples
(
1
);
fmt
.
setInternalTextureFormat
(
GL_RGB
);
// GL_RGBA32F); // which one is the fastest ?
m_fbo
=
new
QOpenGLFramebufferObject
(
m_profileSize
.
width
(),
m_profileSize
.
height
(),
fmt
);
// GL_TEXTURE_2D);
}
m_fbo
->
bind
();
...
...
Eugen Mohr
@emohr
mentioned in issue
#1270 (closed)
·
Feb 01, 2022
mentioned in issue
#1270 (closed)
mentioned in issue #1270
Toggle commit list
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