remove superfluous whitespaces

This commit is contained in:
Louis-Philippe Véronneau 2020-04-05 21:46:52 -04:00 committed by jaseg
parent db644cd74e
commit b4f5b10699
2 changed files with 3 additions and 3 deletions

View file

@ -285,7 +285,7 @@ PyGObject embedding
application = MainClass() application = MainClass()
Gtk.main() Gtk.main()
Using OpenGL from PyGObject via new render context API Using OpenGL from PyGObject via new render context API
...................................................... ......................................................
Just like it is possible to render into a GTK widget through X11 windows, it `also is possible to render into a GTK Just like it is possible to render into a GTK widget through X11 windows, it `also is possible to render into a GTK

4
mpv.py
View file

@ -144,7 +144,7 @@ class MpvOpenGLFBO(Structure):
('w', c_int), ('w', c_int),
('h', c_int), ('h', c_int),
('internal_format', c_int)] ('internal_format', c_int)]
def __init__(self, w, h, fbo=0, internal_format=0): def __init__(self, w, h, fbo=0, internal_format=0):
self.w, self.h = w, h self.w, self.h = w, h
self.fbo = fbo self.fbo = fbo
@ -164,7 +164,7 @@ class MpvOpenGLDRMParams(Structure):
('connector_id', c_int), ('connector_id', c_int),
('atomic_request_ptr', c_void_p), ('atomic_request_ptr', c_void_p),
('render_fd', c_int)] ('render_fd', c_int)]
class MpvOpenGLDRMDrawSurfaceSize(Structure): class MpvOpenGLDRMDrawSurfaceSize(Structure):
_fields_ = [('width', c_int), ('height', c_int)] _fields_ = [('width', c_int), ('height', c_int)]