mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-01 18:58:10 +02:00
python/retrace: Interpret pipe_screen::context_create().
This commit is contained in:
parent
11a981fda1
commit
4ab3f0edef
1 changed files with 4 additions and 0 deletions
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue