diff options
author | Eric Anholt <[email protected]> | 2018-12-19 21:42:36 -0800 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2018-12-20 11:31:25 -0800 |
commit | 17218a04065fb32289950d0d63305c1083884de6 (patch) | |
tree | bac8e582f19bcd2f458a0990d394600cda749375 /src/gallium/drivers/vc4/vc4_resource.c | |
parent | acc481ad79e1b505966bad3140032e928761dabf (diff) |
vc4: Hook up perf_debug() output to GL_ARB_debug_output as well.
This is the right channel to report these things, so that end-users don't
need to know each driver's custom debug options.
Diffstat (limited to 'src/gallium/drivers/vc4/vc4_resource.c')
-rw-r--r-- | src/gallium/drivers/vc4/vc4_resource.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/vc4/vc4_resource.c b/src/gallium/drivers/vc4/vc4_resource.c index e82fbeaafcc..a4d1b903bce 100644 --- a/src/gallium/drivers/vc4/vc4_resource.c +++ b/src/gallium/drivers/vc4/vc4_resource.c @@ -1013,6 +1013,7 @@ void vc4_update_shadow_baselevel_texture(struct pipe_context *pctx, struct pipe_sampler_view *pview) { + struct vc4_context *vc4 = vc4_context(pctx); struct vc4_sampler_view *view = vc4_sampler_view(pview); struct vc4_resource *shadow = vc4_resource(view->texture); struct vc4_resource *orig = vc4_resource(pview->texture); |