radv: init the trace BO before compiling meta shaders

Otherwise, the disasm string is NULL for meta shaders.

Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
This commit is contained in:
Samuel Pitoiset
2017-09-22 15:16:22 +02:00
parent 6f8c40734b
commit 3f6a17a8fc
+5 -5
View File
@@ -1203,6 +1203,11 @@ VkResult radv_CreateDevice(
device->physical_device->rad_info.chip_class >= VI &&
device->physical_device->rad_info.max_se >= 2;
if (getenv("RADV_TRACE_FILE")) {
if (!radv_init_trace(device))
goto fail;
}
result = radv_device_init_meta(device);
if (result != VK_SUCCESS)
goto fail;
@@ -1225,11 +1230,6 @@ VkResult radv_CreateDevice(
device->ws->cs_finalize(device->empty_cs[family]);
}
if (getenv("RADV_TRACE_FILE")) {
if (!radv_init_trace(device))
goto fail;
}
if (device->physical_device->rad_info.chip_class >= CIK)
cik_create_gfx_config(device);