diff options
author | Keith Whitwell <[email protected]> | 2009-12-21 19:50:05 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2009-12-21 19:50:05 +0000 |
commit | 0fc4dd3819af252c028ed43bbd668b4f34104e32 (patch) | |
tree | 72353fecbbc22efbfa49144290c4de66a901d950 /src/gallium/drivers/i965/brw_screen.c | |
parent | f72de22439a2d08bb461af60839baf4fbb3e54df (diff) |
i965g: fixes to build after merge of master
Diffstat (limited to 'src/gallium/drivers/i965/brw_screen.c')
-rw-r--r-- | src/gallium/drivers/i965/brw_screen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/i965/brw_screen.c b/src/gallium/drivers/i965/brw_screen.c index 3d96a77d656..0ecacac9a3a 100644 --- a/src/gallium/drivers/i965/brw_screen.c +++ b/src/gallium/drivers/i965/brw_screen.c @@ -396,7 +396,7 @@ brw_create_screen(struct brw_winsys_screen *sws, uint pci_id) brw_screen_tex_surface_init(bscreen); brw_screen_buffer_init(bscreen); - bscreen->no_tiling = debug_get_option("BRW_NO_TILING", FALSE); + bscreen->no_tiling = debug_get_option("BRW_NO_TILING", FALSE) != NULL; return &bscreen->base; |