python/retrace: Interpret pipe_screen::context_create().

This commit is contained in:
José Fonseca 2010-02-14 12:48:11 +00:00
parent 11a981fda1
commit 4ab3f0edef
1 changed files with 4 additions and 0 deletions

View File

@ -272,6 +272,10 @@ class Screen(Object):
def get_paramf(self, param):
pass
def context_create(self):
context = self.real.context_create()
return Context(self.interpreter, context)
def is_format_supported(self, format, target, tex_usage, geom_flags):
return self.real.is_format_supported(format, target, tex_usage, geom_flags)