summaryrefslogtreecommitdiff
path: root/src/python/__init__.py
blob: 5d0d2cf8e95d3d2bc6b01e013ba5a4cc933e72ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
'''
libavg is a high-level development platform for media-centric applications.
https://www.libavg.de
'''

# Work around libstdc++ Mesa bug
# (https://bugs.launchpad.net/ubuntu/+source/mesa/+bug/259219)
from platform import system
if system() == 'Linux':
    from ctypes import cdll
    cdll.LoadLibrary("libpixman-1.so.0")
    cdll.LoadLibrary("libstdc++.so.6")
del system

from avg import *
player = avg.Player.get()

from enumcompat import *

import textarea
import statemachine
from avgapp import AVGApp
from appstarter import AVGAppStarter, AVGMTAppStarter, AppStarter
import utils, methodref
import gesture
import filter
import persist
import app