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
KWin
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
17
Issues
17
List
Boards
Labels
Service Desk
Milestones
Merge Requests
40
Merge Requests
40
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Plasma
KWin
Commits
84244a7c
Commit
84244a7c
authored
Nov 26, 2019
by
Yuri Chornoivan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use URL with transport encryption
parent
f62086f9
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
6 deletions
+6
-6
CMakeLists.txt
CMakeLists.txt
+1
-1
autotests/integration/effects/scripted_effects_test.cpp
autotests/integration/effects/scripted_effects_test.cpp
+1
-1
effects/screenshot/screenshot.cpp
effects/screenshot/screenshot.cpp
+1
-1
options.cpp
options.cpp
+2
-2
plugins/platforms/virtual/egl_gbm_backend.cpp
plugins/platforms/virtual/egl_gbm_backend.cpp
+1
-1
No files found.
CMakeLists.txt
View file @
84244a7c
...
...
@@ -186,7 +186,7 @@ set_package_properties(Libinput PROPERTIES TYPE REQUIRED PURPOSE "Required for i
find_package
(
UDev
)
set_package_properties
(
UDev PROPERTIES
URL
"http
://www.freedesktop.org/software/systemd/libudev
/"
URL
"http
s://www.freedesktop.org/wiki/Software/systemd
/"
DESCRIPTION
"Linux device library."
TYPE REQUIRED
PURPOSE
"Required for input handling on Wayland."
...
...
autotests/integration/effects/scripted_effects_test.cpp
View file @
84244a7c
...
...
@@ -15,7 +15,7 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http
://
www.gnu.org/licenses/>.
along with this program. If not, see <http
s://
www.gnu.org/licenses/>.
*********************************************************************/
#include "scripting/scriptedeffect.h"
...
...
effects/screenshot/screenshot.cpp
View file @
84244a7c
...
...
@@ -655,7 +655,7 @@ void ScreenShotEffect::convertFromGLImage(QImage &img, int w, int h)
{
// from QtOpenGL/qgl.cpp
// Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
// see http
://qt.gitorious.org/qt/qt/blobs/master
/src/opengl/qgl.cpp
// see http
s://github.com/qt/qtbase/blob/dev
/src/opengl/qgl.cpp
if
(
QSysInfo
::
ByteOrder
==
QSysInfo
::
BigEndian
)
{
// OpenGL gives RGBA; Qt wants ARGB
uint
*
p
=
(
uint
*
)
img
.
bits
();
...
...
options.cpp
View file @
84244a7c
...
...
@@ -673,9 +673,9 @@ void Options::setWindowsBlockCompositing(bool value)
void
Options
::
setGlPreferBufferSwap
(
char
glPreferBufferSwap
)
{
if
(
glPreferBufferSwap
==
'a'
)
{
// buffer cpying is very fast with the nvidia blob
// buffer c
o
pying is very fast with the nvidia blob
// but due to restrictions in DRI2 *incredibly* slow for all MESA drivers
// see http://www.x.org/releases/X11R7.7/doc/dri2proto/dri2proto.txt, item 2.5
// see http
s
://www.x.org/releases/X11R7.7/doc/dri2proto/dri2proto.txt, item 2.5
if
(
GLPlatform
::
instance
()
->
driver
()
==
Driver_NVidia
)
glPreferBufferSwap
=
CopyFrontBuffer
;
else
if
(
GLPlatform
::
instance
()
->
driver
()
!=
Driver_Unknown
)
// undetected, finally resolved when context is initialized
...
...
plugins/platforms/virtual/egl_gbm_backend.cpp
View file @
84244a7c
...
...
@@ -191,7 +191,7 @@ static void convertFromGLImage(QImage &img, int w, int h)
{
// from QtOpenGL/qgl.cpp
// Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
// see http
://qt.gitorious.org/qt/qt/blobs/master
/src/opengl/qgl.cpp
// see http
s://github.com/qt/qtbase/blob/dev
/src/opengl/qgl.cpp
if
(
QSysInfo
::
ByteOrder
==
QSysInfo
::
BigEndian
)
{
// OpenGL gives RGBA; Qt wants ARGB
uint
*
p
=
(
uint
*
)
img
.
bits
();
...
...
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