Skip to content

Instantly share code, notes, and snippets.

@hansent
Created December 1, 2010 14:16
Show Gist options
  • Select an option

  • Save hansent/723534 to your computer and use it in GitHub Desktop.

Select an option

Save hansent/723534 to your computer and use it in GitHub Desktop.
hansent@hansent-mbp:~/code$ ls
backup fresk kinect kivy-test.py libfreenect openFrameworks poly2tri-python pymt pysvg-read-only
hansent@hansent-mbp:~/code$ git clone [email protected]:tito/kivy.git
Initialized empty Git repository in /home/hansent/code/kivy/.git/
remote: Counting objects: 1370, done.
remote: Compressing objects: 100% (991/991), done.
remote: Total 1370 (delta 825), reused 725 (delta 359)
Receiving objects: 100% (1370/1370), 902.94 KiB | 935 KiB/s, done.
Resolving deltas: 100% (825/825), done.
hansent@hansent-mbp:~/code$ cd kivy/
hansent@hansent-mbp:~/code/kivy$ git checkout -t origin/graphics-tree
Branch graphics-tree set up to track remote branch graphics-tree from origin.
Switched to a new branch 'graphics-tree'
hansent@hansent-mbp:~/code/kivy$ python setup.py build_ext --inplace
[INFO ] Kivy v0.6-dev
/usr/lib/python2.6/distutils/dist.py:266: UserWarning: Unknown distribution option: 'test_suite'
warnings.warn(msg)
running build_ext
building 'kivy.c_ext._transformations' extension
creating build
creating build/temp.linux-i686-2.6
creating build/temp.linux-i686-2.6/kivy
creating build/temp.linux-i686-2.6/kivy/c_ext
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -I/usr/lib/python2.6/dist-packages/numpy/core/include -I/usr/include/python2.6 -c kivy/c_ext/transformations.c -o build/temp.linux-i686-2.6/kivy/c_ext/transformations.o
kivy/c_ext/transformations.c: In function ‘py_superimposition_matrix’:
kivy/c_ext/transformations.c:1845: warning: ignoring #pragma vector always
kivy/c_ext/transformations.c:1962: warning: ignoring #pragma vector always
kivy/c_ext/transformations.c:1986: warning: ignoring #pragma vector always
kivy/c_ext/transformations.c: In function ‘py_vector_norm’:
kivy/c_ext/transformations.c:3427: warning: ignoring #pragma vector always
kivy/c_ext/transformations.c:3508: warning: ignoring #pragma vector always
kivy/c_ext/transformations.c: In function ‘py_unit_vector’:
kivy/c_ext/transformations.c:3610: warning: ignoring #pragma vector always
kivy/c_ext/transformations.c:3615: warning: ignoring #pragma vector always
kivy/c_ext/transformations.c:3679: warning: ignoring #pragma vector always
kivy/c_ext/transformations.c:3684: warning: ignoring #pragma vector always
kivy/c_ext/transformations.c: At top level:
kivy/c_ext/transformations.c:774: warning: ‘PyConverter_DoubleArray’ defined but not used
kivy/c_ext/transformations.c:804: warning: ‘PyConverter_DoubleArrayOrNone’ defined but not used
kivy/c_ext/transformations.c:910: warning: ‘PyConverter_DoubleVector4Copy’ defined but not used
gcc -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions build/temp.linux-i686-2.6/kivy/c_ext/transformations.o -o /home/hansent/code/kivy/kivy/c_ext/_transformations.so
cythoning kivy/c_ext/event.pyx to kivy/c_ext/event.c
building 'kivy.c_ext.event' extension
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -I/usr/include/python2.6 -c kivy/c_ext/event.c -o build/temp.linux-i686-2.6/kivy/c_ext/event.o
gcc -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions build/temp.linux-i686-2.6/kivy/c_ext/event.o -o /home/hansent/code/kivy/kivy/c_ext/event.so
cythoning kivy/c_ext/properties.pyx to kivy/c_ext/properties.c
building 'kivy.c_ext.properties' extension
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -I/usr/include/python2.6 -c kivy/c_ext/properties.c -o build/temp.linux-i686-2.6/kivy/c_ext/properties.o
gcc -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions build/temp.linux-i686-2.6/kivy/c_ext/properties.o -o /home/hansent/code/kivy/kivy/c_ext/properties.so
cythoning kivy/c_ext/graphics/opengl.pyx to kivy/c_ext/graphics/opengl.c
building 'kivy.c_ext.graphics.opengl' extension
creating build/temp.linux-i686-2.6/kivy/c_ext/graphics
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -I/usr/include/python2.6 -c kivy/c_ext/graphics/opengl.c -o build/temp.linux-i686-2.6/kivy/c_ext/graphics/opengl.o
In file included from kivy/c_ext/graphics/opengl.c:157:
kivy/c_ext/graphics/gl_redirect.h:10: warning: #warning "GL redirect is set on GLES 2 headers"
kivy/c_ext/graphics/opengl.c: In function ‘__pyx_pf_4kivy_5c_ext_8graphics_6opengl_glShaderSource’:
kivy/c_ext/graphics/opengl.c:9610: warning: passing argument 3 of ‘glShaderSource’ from incompatible pointer type
/usr/include/GLES2/gl2.h:572: note: expected ‘const GLchar **’ but argument is of type ‘char **’
kivy/c_ext/graphics/opengl.c: In function ‘__pyx_pf_4kivy_5c_ext_8graphics_6opengl_glCreateShader’:
kivy/c_ext/graphics/opengl.c:3614: warning: ‘__pyx_v_id’ may be used uninitialized in this function
gcc -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions build/temp.linux-i686-2.6/kivy/c_ext/graphics/opengl.o -lGL -o /home/hansent/code/kivy/kivy/c_ext/graphics/opengl.so
cythoning kivy/c_ext/graphics/buffer.pyx to kivy/c_ext/graphics/buffer.c
building 'kivy.c_ext.graphics.buffer' extension
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -I/usr/include/python2.6 -c kivy/c_ext/graphics/buffer.c -o build/temp.linux-i686-2.6/kivy/c_ext/graphics/buffer.o
gcc -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions build/temp.linux-i686-2.6/kivy/c_ext/graphics/buffer.o -lGL -o /home/hansent/code/kivy/kivy/c_ext/graphics/buffer.so
cythoning kivy/c_ext/graphics/shader.pyx to kivy/c_ext/graphics/shader.c
building 'kivy.c_ext.graphics.shader' extension
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -I/usr/include/python2.6 -c kivy/c_ext/graphics/shader.c -o build/temp.linux-i686-2.6/kivy/c_ext/graphics/shader.o
In file included from kivy/c_ext/graphics/shader.c:156:
kivy/c_ext/graphics/gl_redirect.h:10: warning: #warning "GL redirect is set on GLES 2 headers"
kivy/c_ext/graphics/shader.c: In function ‘__pyx_f_4kivy_5c_ext_8graphics_6shader_6Shader_compile_shader’:
kivy/c_ext/graphics/shader.c:1962: warning: passing argument 3 of ‘glShaderSource’ from incompatible pointer type
/usr/include/GLES2/gl2.h:572: note: expected ‘const GLchar **’ but argument is of type ‘GLchar **’
gcc -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions build/temp.linux-i686-2.6/kivy/c_ext/graphics/shader.o -lGL -o /home/hansent/code/kivy/kivy/c_ext/graphics/shader.so
cythoning kivy/c_ext/graphics/vbo.pyx to kivy/c_ext/graphics/vbo.c
building 'kivy.c_ext.graphics.vbo' extension
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -I/usr/include/python2.6 -c kivy/c_ext/graphics/vbo.c -o build/temp.linux-i686-2.6/kivy/c_ext/graphics/vbo.o
In file included from kivy/c_ext/graphics/vbo.c:156:
kivy/c_ext/graphics/gl_redirect.h:10: warning: #warning "GL redirect is set on GLES 2 headers"
gcc -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions build/temp.linux-i686-2.6/kivy/c_ext/graphics/vbo.o -lGL -o /home/hansent/code/kivy/kivy/c_ext/graphics/vbo.so
cythoning kivy/c_ext/graphics/vertex.pyx to kivy/c_ext/graphics/vertex.c
building 'kivy.c_ext.graphics.vertex' extension
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -I/usr/include/python2.6 -c kivy/c_ext/graphics/vertex.c -o build/temp.linux-i686-2.6/kivy/c_ext/graphics/vertex.o
In file included from kivy/c_ext/graphics/vertex.c:156:
kivy/c_ext/graphics/gl_redirect.h:10: warning: #warning "GL redirect is set on GLES 2 headers"
gcc -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions build/temp.linux-i686-2.6/kivy/c_ext/graphics/vertex.o -lGL -o /home/hansent/code/kivy/kivy/c_ext/graphics/vertex.so
cythoning kivy/c_ext/graphics/instructions.pyx to kivy/c_ext/graphics/instructions.c
building 'kivy.c_ext.graphics.instructions' extension
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -I/usr/include/python2.6 -c kivy/c_ext/graphics/instructions.c -o build/temp.linux-i686-2.6/kivy/c_ext/graphics/instructions.o
In file included from kivy/c_ext/graphics/instructions.c:156:
kivy/c_ext/graphics/gl_redirect.h:10: warning: #warning "GL redirect is set on GLES 2 headers"
gcc -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions build/temp.linux-i686-2.6/kivy/c_ext/graphics/instructions.o -lGL -o /home/hansent/code/kivy/kivy/c_ext/graphics/instructions.so
cythoning kivy/c_ext/graphics/context_instructions.pyx to kivy/c_ext/graphics/context_instructions.c
building 'kivy.c_ext.graphics.context_instructions' extension
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -I/usr/include/python2.6 -c kivy/c_ext/graphics/context_instructions.c -o build/temp.linux-i686-2.6/kivy/c_ext/graphics/context_instructions.o
In file included from kivy/c_ext/graphics/context_instructions.c:156:
kivy/c_ext/graphics/gl_redirect.h:10: warning: #warning "GL redirect is set on GLES 2 headers"
gcc -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions build/temp.linux-i686-2.6/kivy/c_ext/graphics/context_instructions.o -lGL -o /home/hansent/code/kivy/kivy/c_ext/graphics/context_instructions.so
cythoning kivy/c_ext/graphics/vertex_instructions.pyx to kivy/c_ext/graphics/vertex_instructions.c
building 'kivy.c_ext.graphics.vertex_instructions' extension
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -I/usr/include/python2.6 -c kivy/c_ext/graphics/vertex_instructions.c -o build/temp.linux-i686-2.6/kivy/c_ext/graphics/vertex_instructions.o
In file included from kivy/c_ext/graphics/vertex_instructions.c:156:
kivy/c_ext/graphics/gl_redirect.h:10: warning: #warning "GL redirect is set on GLES 2 headers"
gcc -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions build/temp.linux-i686-2.6/kivy/c_ext/graphics/vertex_instructions.o -lGL -o /home/hansent/code/kivy/kivy/c_ext/graphics/vertex_instructions.so
cythoning kivy/c_ext/graphics/compiler.pyx to kivy/c_ext/graphics/compiler.c
building 'kivy.c_ext.graphics.compiler' extension
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -I/usr/include/python2.6 -c kivy/c_ext/graphics/compiler.c -o build/temp.linux-i686-2.6/kivy/c_ext/graphics/compiler.o
In file included from kivy/c_ext/graphics/compiler.c:156:
kivy/c_ext/graphics/gl_redirect.h:10: warning: #warning "GL redirect is set on GLES 2 headers"
gcc -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions build/temp.linux-i686-2.6/kivy/c_ext/graphics/compiler.o -lGL -o /home/hansent/code/kivy/kivy/c_ext/graphics/compiler.so
hansent@hansent-mbp:~/code/kivy$ python setup.py build_factory
[INFO ] Kivy v0.6-dev
/usr/lib/python2.6/distutils/dist.py:266: UserWarning: Unknown distribution option: 'test_suite'
warnings.warn(msg)
running build_factory
--------------------------------------------
Building factory relation file
--------------------------------------------
>>> kivy.event ::
>>> kivy.gesture :: Gesture GestureDatabase GesturePoint GestureStroke
>>> kivy.cache :: Cache
>>> kivy.vector :: Vector
>>> kivy.clock ::
>>> kivy.logger :: LoggerHistory
[INFO ] [OSC ] using <multiprocessing> for socket
[INFO ] [Logger ] Record log in /home/hansent/.kivy/logs/kivy_10-12-01_62.txt
>>> kivy.app ::
>>> kivy.weakmethod ::
>>> kivy.svg ::
>>> kivy.exceptions :: ExceptionHandler
[INFO ] [No OpenGL_accelerate module loaded] No module named OpenGL_accelerate
None
>>> kivy.texture :: Texture TextureRegion
>>> kivy.utils :: SafeList OrderedDict
>>> kivy.obj :: OBJ Material MaterialGroup Mesh
>>> kivy.config ::
>>> kivy.lang ::
ERROR: No module named factory_registers
[INFO ] Kivy v0.6-dev
>>> kivy.__init__ ::
>>> kivy.base ::
>>> kivy.geometry ::
>>> kivy.plugin :: MTContext MTPlugins
>>> kivy.factory ::
ERROR: No module named factory_registers
[DEBUG ] [Cache ] register <kivy.loader> with limit=500, timeout=60s
[INFO ] [Loader ] using <pygame> as thread loader
>>> kivy.loader :: ProxyImage
>>> kivy.resources ::
>>> kivy.support ::
>>> kivy.core.__init__ ::
>>> kivy.graphics.__init__ ::
>>> kivy.tests.test_properties ::
>>> kivy.tests.__init__ ::
>>> kivy.tests.coverage.templite ::
ERROR: No module named coverage.control
>>> kivy.tests.coverage.data ::
ERROR: No module named coverage.control
>>> kivy.tests.coverage.annotate ::
ERROR: No module named coverage.control
>>> kivy.tests.coverage.execfile ::
ERROR: No module named coverage.control
>>> kivy.tests.coverage.xmlreport ::
ERROR: No module named coverage.control
>>> kivy.tests.coverage.html ::
ERROR: No module named coverage.control
>>> kivy.tests.coverage.codeunit ::
ERROR: No module named coverage.control
>>> kivy.tests.coverage.misc ::
ERROR: No module named coverage.control
>>> kivy.tests.coverage.results ::
ERROR: No module named coverage.control
>>> kivy.tests.coverage.files ::
ERROR: No module named coverage.control
>>> kivy.tests.coverage.control ::
ERROR: No module named coverage.control
>>> kivy.tests.coverage.bytecode ::
ERROR: No module named coverage.control
>>> kivy.tests.coverage.collector ::
ERROR: No module named coverage.control
>>> kivy.tests.coverage.config ::
ERROR: No module named coverage.control
>>> kivy.tests.coverage.__init__ ::
ERROR: No module named coverage.control
>>> kivy.tests.coverage.backward ::
ERROR: No module named coverage.control
>>> kivy.tests.coverage.summary ::
ERROR: No module named coverage.control
>>> kivy.tests.coverage.phystokens ::
ERROR: No module named coverage.control
>>> kivy.tests.coverage.report ::
ERROR: No module named coverage.control
>>> kivy.tests.coverage.parser ::
ERROR: No module named coverage.control
>>> kivy.tests.coverage.__main__ ::
ERROR: No module named coverage.control
>>> kivy.tests.coverage.cmdline ::
ERROR: No module named coverage.control
>>> kivy.c_ext.event :: EventDispatcher
>>> kivy.c_ext.properties ::
>>> kivy.c_ext.__init__ ::
>>> kivy.c_ext._transformations ::
>>> kivy.c_ext.graphics.opengl ::
>>> kivy.c_ext.graphics.compiler ::
>>> kivy.c_ext.graphics.vertex_instructions :: Triangle Quad Rectangle BorderImage Ellipse
>>> kivy.c_ext.graphics.context_instructions :: LineWidth Color BindTexture PushMatrix PopMatrix Rotate Scale Translate
>>> kivy.c_ext.graphics.buffer ::
>>> kivy.c_ext.graphics.__init__ ::
>>> kivy.c_ext.graphics.instructions :: GraphicsInstruction InstructionGroup ContextInstruction VertexInstruction Canvas RenderContext
>>> kivy.c_ext.graphics.vbo :: VBO
>>> kivy.c_ext.graphics.vertex ::
>>> kivy.c_ext.graphics.shader :: Shader
>>> kivy.uix.slider ::
ERROR: No module named factory_registers
>>> kivy.uix.button ::
ERROR: No module named factory_registers
>>> kivy.uix.label ::
ERROR: No module named factory_registers
>>> kivy.uix.svg ::
ERROR: No module named factory_registers
>>> kivy.uix.video ::
ERROR: No module named factory_registers
>>> kivy.uix.togglebutton ::
ERROR: No module named factory_registers
>>> kivy.uix.boxlayout ::
ERROR: No module named factory_registers
>>> kivy.uix.__init__ ::
>>> kivy.uix.widget ::
ERROR: No module named factory_registers
>>> kivy.uix.image ::
ERROR: No module named factory_registers
>>> kivy.input.shape :: TouchShape TouchShapeRect
>>> kivy.input.__init__ ::
>>> kivy.input.touch ::
>>> kivy.input.provider :: TouchProvider
>>> kivy.input.factory :: TouchFactory
--------------------------------------------
Found 45 symbols, generating file
--------------------------------------------
File written at /home/hansent/code/kivy/kivy/factory_registers.py
hansent@hansent-mbp:~/code/kivy$ python setup.py build_factory
[INFO ] Kivy v0.6-dev
/usr/lib/python2.6/distutils/dist.py:266: UserWarning: Unknown distribution option: 'test_suite'
warnings.warn(msg)
running build_factory
--------------------------------------------
Building factory relation file
--------------------------------------------
>>> kivy.event ::
>>> kivy.gesture :: Gesture GestureDatabase GesturePoint GestureStroke
>>> kivy.cache :: Cache
>>> kivy.vector :: Vector
>>> kivy.clock ::
>>> kivy.logger :: LoggerHistory
[INFO ] [OSC ] using <multiprocessing> for socket
[INFO ] [Logger ] Record log in /home/hansent/.kivy/logs/kivy_10-12-01_63.txt
>>> kivy.app ::
>>> kivy.weakmethod ::
>>> kivy.svg ::
>>> kivy.exceptions :: ExceptionHandler
[INFO ] [No OpenGL_accelerate module loaded] No module named OpenGL_accelerate
None
>>> kivy.texture :: Texture TextureRegion
>>> kivy.utils :: SafeList OrderedDict
>>> kivy.obj :: OBJ Material MaterialGroup Mesh
>>> kivy.config ::
[INFO ] [Factory ] 45 symbols loaded
>>> kivy.lang :: Parser
[INFO ] Kivy v0.6-dev
>>> kivy.__init__ ::
>>> kivy.base ::
>>> kivy.factory_registers ::
>>> kivy.geometry ::
>>> kivy.plugin :: MTContext MTPlugins
>>> kivy.factory :: FactoryException
[DEBUG ] [Cache ] register <kivy.loader> with limit=500, timeout=60s
[INFO ] [Loader ] using <pygame> as thread loader
>>> kivy.loader :: ProxyImage
>>> kivy.resources ::
>>> kivy.support ::
>>> kivy.core.__init__ ::
>>> kivy.graphics.__init__ ::
>>> kivy.tests.test_properties ::
>>> kivy.tests.__init__ ::
>>> kivy.tests.coverage.templite ::
ERROR: No module named coverage.control
>>> kivy.tests.coverage.data ::
ERROR: No module named coverage.control
>>> kivy.tests.coverage.annotate ::
ERROR: No module named coverage.control
>>> kivy.tests.coverage.execfile ::
ERROR: No module named coverage.control
>>> kivy.tests.coverage.xmlreport ::
ERROR: No module named coverage.control
>>> kivy.tests.coverage.html ::
ERROR: No module named coverage.control
>>> kivy.tests.coverage.codeunit ::
ERROR: No module named coverage.control
>>> kivy.tests.coverage.misc ::
ERROR: No module named coverage.control
>>> kivy.tests.coverage.results ::
ERROR: No module named coverage.control
>>> kivy.tests.coverage.files ::
ERROR: No module named coverage.control
>>> kivy.tests.coverage.control ::
ERROR: No module named coverage.control
>>> kivy.tests.coverage.bytecode ::
ERROR: No module named coverage.control
>>> kivy.tests.coverage.collector ::
ERROR: No module named coverage.control
>>> kivy.tests.coverage.config ::
ERROR: No module named coverage.control
>>> kivy.tests.coverage.__init__ ::
ERROR: No module named coverage.control
>>> kivy.tests.coverage.backward ::
ERROR: No module named coverage.control
>>> kivy.tests.coverage.summary ::
ERROR: No module named coverage.control
>>> kivy.tests.coverage.phystokens ::
ERROR: No module named coverage.control
>>> kivy.tests.coverage.report ::
ERROR: No module named coverage.control
>>> kivy.tests.coverage.parser ::
ERROR: No module named coverage.control
>>> kivy.tests.coverage.__main__ ::
ERROR: No module named coverage.control
>>> kivy.tests.coverage.cmdline ::
ERROR: No module named coverage.control
>>> kivy.c_ext.event :: EventDispatcher
>>> kivy.c_ext.properties ::
>>> kivy.c_ext.__init__ ::
>>> kivy.c_ext._transformations ::
>>> kivy.c_ext.graphics.opengl ::
>>> kivy.c_ext.graphics.compiler ::
>>> kivy.c_ext.graphics.vertex_instructions :: Triangle Quad Rectangle BorderImage Ellipse
>>> kivy.c_ext.graphics.context_instructions :: LineWidth Color BindTexture PushMatrix PopMatrix Rotate Scale Translate
>>> kivy.c_ext.graphics.buffer ::
>>> kivy.c_ext.graphics.__init__ ::
>>> kivy.c_ext.graphics.instructions :: GraphicsInstruction InstructionGroup ContextInstruction VertexInstruction Canvas RenderContext
>>> kivy.c_ext.graphics.vbo :: VBO
>>> kivy.c_ext.graphics.vertex ::
>>> kivy.c_ext.graphics.shader :: Shader
>>> kivy.uix.slider :: Slider
>>> kivy.uix.button :: Button
[INFO ] [Text ] using <pygame> as text provider
>>> kivy.uix.label :: Label
>>> kivy.uix.svg :: SVG
** Message: pygobject_register_sinkfunc is deprecated (GstObject)
[INFO ] [Window ] using <pygame> as window provider
[DEBUG ] [Shader ] vertex shader compiled successfully
[DEBUG ] [Shader ] fragment shader compiled successfully
[DEBUG ] [Shader ] program compiled successfully
[DEBUG ] [Image ] Load </home/hansent/code/kivy/kivy/data/glsl/default.png>
[INFO ] [GL ] OpenGL version <3.3.0 NVIDIA 260.19.06>
[INFO ] [Video ] using <gstreamer> as video provider
>>> kivy.uix.video :: Video
>>> kivy.uix.togglebutton :: ToggleButton
>>> kivy.uix.boxlayout :: BoxLayout
>>> kivy.uix.__init__ ::
>>> kivy.uix.widget :: Widget
>>> kivy.uix.image :: Image
>>> kivy.input.shape :: TouchShape TouchShapeRect
>>> kivy.input.__init__ ::
>>> kivy.input.touch ::
>>> kivy.input.provider :: TouchProvider
>>> kivy.input.factory :: TouchFactory
--------------------------------------------
Found 56 symbols, generating file
--------------------------------------------
File written at /home/hansent/code/kivy/kivy/factory_registers.py
hansent@hansent-mbp:~/code/kivy$ python examples/kv/kvrun.py examples/kv/
app_button.kv app_layout.py app_logo.kv app_video.kv kvrun.py
hansent@hansent-mbp:~/code/kivy$ python examples/kv/kvrun.py examples/kv/app_button.kv
[INFO ] Kivy v0.6-dev
[INFO ] [OSC ] using <multiprocessing> for socket
Purge log fired. Analysing...
Purge 11 log files
Purge finished !
[INFO ] [Logger ] Record log in /home/hansent/.kivy/logs/kivy_10-12-01_64.txt
[INFO ] [Factory ] 56 symbols loaded
[INFO ] [Window ] using <pygame> as window provider
[INFO ] [No OpenGL_accelerate module loaded] No module named OpenGL_accelerate
None
[INFO ] [OpenGL Version] 3.3.0 NVIDIA 260.19.06
[INFO ] GL Extension GL_ARB_shader_objects available
[INFO ] [GL ] OpenGL version <3.3.0 NVIDIA 260.19.06>
[DEBUG ] [Shader ] vertex shader compiled successfully
[DEBUG ] [Shader ] fragment shader compiled successfully
[DEBUG ] [Shader ] program compiled successfully
[DEBUG ] [Image ] Load </home/hansent/code/kivy/kivy/data/glsl/default.png>
[WARNING] VERTINSTR {}
[DEBUG ] [Image ] Load </home/hansent/code/kivy/kivy/data/glsl/default.png>
[WARNING] setting texture
[WARNING] done {}
[WARNING] done nitializing texture binding None, <Texture size=(64, 64)>
[DEBUG ] setting texture coords <kivy.c_ext.graphics.vertex_instructions.BorderImage object at 0x96e3c8c> (0.0, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 1.0)
[DEBUG ] setting texture coords <kivy.c_ext.graphics.vertex_instructions.BorderImage object at 0x96e3c8c> [0.0, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 1.0]
[DEBUG ] [Image ] Load </home/hansent/code/kivy/kivy/data/images/button.png>
[DEBUG ] setting texture coords <kivy.c_ext.graphics.vertex_instructions.BorderImage object at 0x96e3c8c> (0.0, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 1.0)
[INFO ] [Text ] using <pygame> as text provider
[WARNING] [LABEL TEXTURE UPDATE] <Texture size=(1, 17)> False
[WARNING] VERTINSTR {}
[WARNING] setting texture
[WARNING] done {}
[WARNING] done nitializing texture binding None, <Texture size=(64, 64)>
[DEBUG ] setting texture coords <kivy.c_ext.graphics.vertex_instructions.Rectangle object at 0x96e3f5c> (0.0, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 1.0)
[DEBUG ] setting texture coords <kivy.c_ext.graphics.vertex_instructions.Rectangle object at 0x96e3f5c> [0.0, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 1.0]
[DEBUG ] setting texture coords <kivy.c_ext.graphics.vertex_instructions.Rectangle object at 0x96e3f5c> (0.0, 0.0, 1.0, 0.0, 1.0, 0.53125, 0.0, 0.53125)
[WARNING] VERTINSTR {}
[WARNING] setting texture
[WARNING] done {}
[WARNING] done nitializing texture binding None, <Texture size=(64, 64)>
[DEBUG ] setting texture coords <kivy.c_ext.graphics.vertex_instructions.BorderImage object at 0x96e3ecc> (0.0, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 1.0)
[DEBUG ] setting texture coords <kivy.c_ext.graphics.vertex_instructions.BorderImage object at 0x96e3ecc> [0.0, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 1.0]
[DEBUG ] [Image ] Load </home/hansent/code/kivy/kivy/data/images/button.png>
[DEBUG ] setting texture coords <kivy.c_ext.graphics.vertex_instructions.BorderImage object at 0x96e3ecc> (0.0, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 1.0)
[WARNING] [LABEL TEXTURE UPDATE] <Texture size=(1, 17)> False
[WARNING] VERTINSTR {}
[WARNING] setting texture
[WARNING] done {}
[WARNING] done nitializing texture binding None, <Texture size=(64, 64)>
[DEBUG ] setting texture coords <kivy.c_ext.graphics.vertex_instructions.Rectangle object at 0x96e3fa4> (0.0, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 1.0)
[DEBUG ] setting texture coords <kivy.c_ext.graphics.vertex_instructions.Rectangle object at 0x96e3fa4> [0.0, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 1.0]
[DEBUG ] setting texture coords <kivy.c_ext.graphics.vertex_instructions.Rectangle object at 0x96e3fa4> (0.0, 0.0, 1.0, 0.0, 1.0, 0.53125, 0.0, 0.53125)
[DEBUG ] [Base ] Create provider from tuio,0.0.0.0:3333
[DEBUG ] [Base ] Create provider from mouse
[INFO ] [Base ] Start application main loop
[DEBUG ] [OSC ] Start thread <0.0.0.0:3333>
[INFO ] [OSC ] listening for Tuio on 0.0.0.0:3333
[DEBUG ] setting texture coords <kivy.c_ext.graphics.vertex_instructions.Rectangle object at 0x96e3f5c> [0.0, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 1.0]
[DEBUG ] setting texture coords <kivy.c_ext.graphics.vertex_instructions.Rectangle object at 0x96e3f5c> (0.0, 0.0, 0.6328125, 0.0, 0.6328125, 0.5625, 0.0, 0.5625)
[WARNING] [LABEL TEXTURE UPDATE] <Texture size=(81, 18)> False
[DEBUG ] setting texture coords <kivy.c_ext.graphics.vertex_instructions.Rectangle object at 0x96e3fa4> [0.0, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 1.0]
[DEBUG ] setting texture coords <kivy.c_ext.graphics.vertex_instructions.Rectangle object at 0x96e3fa4> (0.0, 0.0, 0.9453125, 0.0, 0.9453125, 0.5625, 0.0, 0.5625)
[WARNING] [LABEL TEXTURE UPDATE] <Texture size=(121, 18)> False
FPS: 0.0000 (real draw: 0)
FPS: 1994.8702 (real draw: 1994)
[INFO ] [Base ] Leaving application in progress...
[DEBUG ] [OSC ] Stop thread <0.0.0.0:3333>
[DEBUG ] [OSC ] Stop thread <0.0.0.0:3333> finished
hansent@hansent-mbp:~/code/kivy$
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment