From 3fa75bff2ce503933bbd40ab43a96c1056f5ca9e Mon Sep 17 00:00:00 2001 From: Zen-CODE Date: Fri, 25 Jul 2014 23:10:05 +0200 Subject: [PATCH] doc: elaborated on graphics contexts foir graphics/context.pyx --- kivy/graphics/context.pyx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/kivy/graphics/context.pyx b/kivy/graphics/context.pyx index a14317d70..5d7008522 100644 --- a/kivy/graphics/context.pyx +++ b/kivy/graphics/context.pyx @@ -4,10 +4,12 @@ Context management .. versionadded:: 1.2.0 -This class manages a registry of all the created graphics instructions. It has +This class manages a registry of all created graphics instructions. It has the ability to flush and delete them. -You can read more about it at :doc:`api-kivy.graphics` +You can read more about Kivy graphics contexts in the :doc:`api-kivy.graphics` +module documentation. These are based on +`OpenGL graphics contexts `_. ''' __all__ = ('Context',)