ws/i965: rename and change sense of I965_SEND_CMD to BRW_NO_HW

This commit is contained in:
Keith Whitwell 2009-11-30 14:20:33 +00:00
parent cddc7e3a9c
commit 1dfdc0a615
2 changed files with 1 additions and 3 deletions

View file

@ -198,8 +198,7 @@ i965_libdrm_create_screen(struct drm_api *api, int drmFD,
idws->gem = drm_intel_bufmgr_gem_init(idws->fd, BRW_BATCH_SIZE);
drm_intel_bufmgr_gem_enable_reuse(idws->gem);
idws->dump_cmd = debug_get_bool_option("I965_DUMP_CMD", FALSE);
idws->send_cmd = debug_get_bool_option("I965_SEND_CMD", FALSE);
idws->send_cmd = !debug_get_bool_option("BRW_NO_HW", FALSE);
return brw_create_screen(&idws->base, deviceID);
}

View file

@ -19,7 +19,6 @@ struct i965_libdrm_winsys
struct brw_winsys_screen base;
drm_intel_bufmgr *gem;
boolean dump_cmd;
boolean send_cmd;
int fd; /**< Drm file discriptor */