gallium/trace: remove useless NULL check from trace_screen_create()

Currently every target makes sure that the screen is non-null prior to
using the debug (trace including) wrappers. If that no longer holds true
we want to know and fix this ASAP rather than silently bailing out.

Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
Acked-by: Rob Clark <robclark@freedesktop.org>
This commit is contained in:
Emil Velikov 2015-10-06 22:25:47 +01:00
parent e762a46a07
commit c751d33a20

View file

@ -456,9 +456,6 @@ trace_screen_create(struct pipe_screen *screen)
{
struct trace_screen *tr_scr;
if(!screen)
goto error1;
if (!trace_enabled())
goto error1;