1bf215546Sopenharmony_ci/* 2bf215546Sopenharmony_ci * Copyright © 2016 Red Hat. 3bf215546Sopenharmony_ci * Copyright © 2016 Bas Nieuwenhuizen 4bf215546Sopenharmony_ci * SPDX-License-Identifier: MIT 5bf215546Sopenharmony_ci * 6bf215546Sopenharmony_ci * based in part on anv driver which is: 7bf215546Sopenharmony_ci * Copyright © 2015 Intel Corporation 8bf215546Sopenharmony_ci */ 9bf215546Sopenharmony_ci 10bf215546Sopenharmony_ci#ifndef TU_DYNAMIC_RENDERING_H 11bf215546Sopenharmony_ci#define TU_DYNAMIC_RENDERING_H 12bf215546Sopenharmony_ci 13bf215546Sopenharmony_ci#include "tu_common.h" 14bf215546Sopenharmony_ci 15bf215546Sopenharmony_ciVkResult tu_init_dynamic_rendering(struct tu_device *dev); 16bf215546Sopenharmony_ci 17bf215546Sopenharmony_civoid tu_destroy_dynamic_rendering(struct tu_device *dev); 18bf215546Sopenharmony_ci 19bf215546Sopenharmony_ciVkResult tu_insert_dynamic_cmdbufs(struct tu_device *dev, 20bf215546Sopenharmony_ci struct tu_cmd_buffer ***cmds_ptr, 21bf215546Sopenharmony_ci uint32_t *size); 22bf215546Sopenharmony_ci 23bf215546Sopenharmony_ci#endif /* TU_DYNAMIC_RENDERING_H */ 24