diff options
author | Eric Anholt <[email protected]> | 2018-12-19 21:34:44 -0800 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2018-12-20 11:31:19 -0800 |
commit | ba36312fbd079658edc86015852f519c8290a09a (patch) | |
tree | 2400e17560a32dea7beff19793f7b3554ccefacc /src/gallium/drivers/v3d/v3d_resource.c | |
parent | d3991d247222122bdfba730cf76628374ac95668 (diff) |
v3d: 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/v3d/v3d_resource.c')
-rw-r--r-- | src/gallium/drivers/v3d/v3d_resource.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/v3d/v3d_resource.c b/src/gallium/drivers/v3d/v3d_resource.c index 45214b01b28..fba1661cd3f 100644 --- a/src/gallium/drivers/v3d/v3d_resource.c +++ b/src/gallium/drivers/v3d/v3d_resource.c @@ -894,6 +894,7 @@ void v3d_update_shadow_texture(struct pipe_context *pctx, struct pipe_sampler_view *pview) { + struct v3d_context *v3d = v3d_context(pctx); struct v3d_sampler_view *view = v3d_sampler_view(pview); struct v3d_resource *shadow = v3d_resource(view->texture); struct v3d_resource *orig = v3d_resource(pview->texture); |