From f31acf830d1a384b8e3c0052925131c5b40ec835 Mon Sep 17 00:00:00 2001 From: Mathieu Virbel Date: Mon, 29 Oct 2012 02:29:58 +0100 Subject: [PATCH] kv.shader: increase the default timeout for shadersource cache. closes #673 --- kivy/graphics/context_instructions.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kivy/graphics/context_instructions.pyx b/kivy/graphics/context_instructions.pyx index 0e758fc0f..c8b626821 100644 --- a/kivy/graphics/context_instructions.pyx +++ b/kivy/graphics/context_instructions.pyx @@ -41,7 +41,7 @@ cdef object get_default_texture(): # register Image cache Cache.register('kv.texture', limit=1000, timeout=60) -Cache.register('kv.shader', limit=1000, timeout=60) +Cache.register('kv.shader', limit=1000, timeout=3600) # ensure that our resources are cleaned def gl_init_resources():