diff options
author | Michel Dänzer <[email protected]> | 2018-07-12 16:29:51 +0200 |
---|---|---|
committer | Michel Dänzer <[email protected]> | 2018-07-12 17:39:12 +0200 |
commit | 34e89e4d3802ec9b4d7da178757bd82c44310653 (patch) | |
tree | 8f3ba9ecd6a527804c22e069c5a4476b1a04b1c0 /src/gallium/auxiliary/driver_ddebug | |
parent | c2587ac4e58353657c3a38e259bc55ee1216716e (diff) |
gallium: Check pipe_screen::resource_changed before dereferencing it
It's optional, only implemented by the etnaviv driver so far.
Fixes: 501d0edeca32 "st/mesa: call resource_changed when binding a
EGLImage to a texture"
Fixes: a37cf630b4d1 "gallium: add pipe_screen::resource_changed callback
wrappers"
Reviewed-by: Lucas Stach <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/driver_ddebug')
-rw-r--r-- | src/gallium/auxiliary/driver_ddebug/dd_screen.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/driver_ddebug/dd_screen.c b/src/gallium/auxiliary/driver_ddebug/dd_screen.c index 5b2be28a969..5f922d884fe 100644 --- a/src/gallium/auxiliary/driver_ddebug/dd_screen.c +++ b/src/gallium/auxiliary/driver_ddebug/dd_screen.c @@ -284,7 +284,8 @@ dd_screen_resource_changed(struct pipe_screen *_screen, { struct pipe_screen *screen = dd_screen(_screen)->screen; - screen->resource_changed(screen, res); + if (screen->resource_changed) + screen->resource_changed(screen, res); } static void |