diff options
Diffstat (limited to 'src/kosmickrisp/bridge/stubs/mtl_command_queue.c')
| -rw-r--r-- | src/kosmickrisp/bridge/stubs/mtl_command_queue.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/kosmickrisp/bridge/stubs/mtl_command_queue.c b/src/kosmickrisp/bridge/stubs/mtl_command_queue.c new file mode 100644 index 00000000000..aa39a3446ee --- /dev/null +++ b/src/kosmickrisp/bridge/stubs/mtl_command_queue.c @@ -0,0 +1,19 @@ +/* + * Copyright 2025 LunarG, Inc. + * Copyright 2025 Google LLC + * SPDX-License-Identifier: MIT + */ + +#include "mtl_command_queue.h" + +mtl_command_queue * +mtl_new_command_queue(mtl_device *device, uint32_t cmd_buffer_count) +{ + return NULL; +} + +mtl_command_buffer * +mtl_new_command_buffer(mtl_command_queue *cmd_queue) +{ + return NULL; +} |