summaryrefslogtreecommitdiff
path: root/mpv.py
diff options
context:
space:
mode:
Diffstat (limited to 'mpv.py')
-rw-r--r--mpv.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mpv.py b/mpv.py
index 988e360..ef1dade 100644
--- a/mpv.py
+++ b/mpv.py
@@ -144,7 +144,7 @@ class MpvOpenGLFBO(Structure):
('w', c_int),
('h', c_int),
('internal_format', c_int)]
-
+
def __init__(self, w, h, fbo=0, internal_format=0):
self.w, self.h = w, h
self.fbo = fbo
@@ -164,7 +164,7 @@ class MpvOpenGLDRMParams(Structure):
('connector_id', c_int),
('atomic_request_ptr', c_void_p),
('render_fd', c_int)]
-
+
class MpvOpenGLDRMDrawSurfaceSize(Structure):
_fields_ = [('width', c_int), ('height', c_int)]