mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 11:28:05 +02:00
iris: call brw_process_intel_debug_variable() earlier
We're currently only calling it after creating the screen and the bufmgr. There are a few cases where Iris checks for the DEBUG_BUFMGR bit before we call brw_process_intel_debug_variable(), which means intel_debug is 0 and so we don't run the debug code. Today, these are all related to the creation of the workaround bo and its mmap. I found this in a custom branch after I converted to INTEL_DEBUG an environment variable that I had. Reviewed-by: Kenneth Graunke <kenneth@whitecape.org> Signed-off-by: Paulo Zanoni <paulo.r.zanoni@intel.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/13780>
This commit is contained in:
parent
9ae34651f7
commit
a9c1cc63c6
1 changed files with 2 additions and 2 deletions
|
|
@ -802,6 +802,8 @@ iris_screen_create(int fd, const struct pipe_screen_config *config)
|
|||
break;
|
||||
}
|
||||
|
||||
brw_process_intel_debug_variable();
|
||||
|
||||
screen->bufmgr = iris_bufmgr_get_for_fd(&screen->devinfo, fd, bo_reuse);
|
||||
if (!screen->bufmgr)
|
||||
return NULL;
|
||||
|
|
@ -820,8 +822,6 @@ iris_screen_create(int fd, const struct pipe_screen_config *config)
|
|||
if (!iris_init_identifier_bo(screen))
|
||||
return NULL;
|
||||
|
||||
brw_process_intel_debug_variable();
|
||||
|
||||
screen->driconf.dual_color_blend_by_location =
|
||||
driQueryOptionb(config->options, "dual_color_blend_by_location");
|
||||
screen->driconf.disable_throttling =
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue