mirror of https://github.com/kivy/kivy.git
remove debug
This commit is contained in:
parent
7e879baeff
commit
ac96095180
|
@ -64,7 +64,7 @@ class ShaderWidget(FloatLayout):
|
|||
super(ShaderWidget, self).__init__(**kwargs)
|
||||
|
||||
# We'll update our glsl variables in a clock
|
||||
Clock.schedule_interval(self.update_glsl, 1. / 60.)
|
||||
Clock.schedule_interval(self.update_glsl, 1 / 60.)
|
||||
|
||||
def on_fs(self, instance, value):
|
||||
# set the fragment shader to our source code
|
||||
|
|
|
@ -93,7 +93,6 @@ def require(version):
|
|||
elif len(l) == 3:
|
||||
version, tag, tagrev = l
|
||||
else:
|
||||
print 'got:', l
|
||||
raise Exception('Revision format must be X.Y.Z[-tag]')
|
||||
|
||||
# check x y z
|
||||
|
|
Loading…
Reference in New Issue