Implement libresoc_DeviceWaitIdle() libresoc_QueueWaitIdle().
[mesa.git] / src / libre-soc / vulkan / libresoc_pipeline.c
1 /*
2 * Copyright © 2016 Red Hat.
3 * Copyright © 2016 Bas Nieuwenhuizen
4 *
5 * based in part on anv driver which is:
6 * Copyright © 2015 Intel Corporation
7 *
8 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the "Software"),
10 * to deal in the Software without restriction, including without limitation
11 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
12 * and/or sell copies of the Software, and to permit persons to whom the
13 * Software is furnished to do so, subject to the following conditions:
14 *
15 * The above copyright notice and this permission notice (including the next
16 * paragraph) shall be included in all copies or substantial portions of the
17 * Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
22 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
24 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
25 * IN THE SOFTWARE.
26 */
27
28 #include "libresoc_private.h"
29 #include "vk_util.h"
30
31 #include "vk_format.h"
32 #include "util/debug.h"
33
34 VkResult
35 libresoc_CreateShaderModule(VkDevice _device,
36 const VkShaderModuleCreateInfo *pCreateInfo,
37 const VkAllocationCallbacks *pAllocator,
38 VkShaderModule *pShaderModule)
39 {
40 /* FIXME: stub */
41
42 return VK_SUCCESS;
43 }
44
45 void
46 libresoc_DestroyShaderModule(VkDevice _device,
47 VkShaderModule _module,
48 const VkAllocationCallbacks *pAllocator)
49 {
50 /* FIXME: stub */
51 }
52
53 VkResult libresoc_CreateGraphicsPipelines(
54 VkDevice _device,
55 VkPipelineCache pipelineCache,
56 uint32_t count,
57 const VkGraphicsPipelineCreateInfo* pCreateInfos,
58 const VkAllocationCallbacks* pAllocator,
59 VkPipeline* pPipelines)
60 {
61 return VK_ERROR_UNKNOWN;
62 //FIXME: stub
63 }
64
65 VkResult libresoc_CreateComputePipelines(
66 VkDevice _device,
67 VkPipelineCache pipelineCache,
68 uint32_t count,
69 const VkComputePipelineCreateInfo* pCreateInfos,
70 const VkAllocationCallbacks* pAllocator,
71 VkPipeline* pPipelines)
72 {
73 VkResult result = VK_SUCCESS;
74 //FIXME: stub
75
76 return result;
77 }
78
79 void libresoc_DestroyPipeline(
80 VkDevice _device,
81 VkPipeline _pipeline,
82 const VkAllocationCallbacks* pAllocator)
83 {
84 //FIXME: stub
85 }