About Social Code
aboutsummaryrefslogtreecommitdiff
path: root/src/kosmickrisp/bridge/mtl_command_queue.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/kosmickrisp/bridge/mtl_command_queue.h')
-rw-r--r--src/kosmickrisp/bridge/mtl_command_queue.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/kosmickrisp/bridge/mtl_command_queue.h b/src/kosmickrisp/bridge/mtl_command_queue.h
new file mode 100644
index 00000000000..8cc0149d3a6
--- /dev/null
+++ b/src/kosmickrisp/bridge/mtl_command_queue.h
@@ -0,0 +1,19 @@
+/*
+ * Copyright 2025 LunarG, Inc.
+ * Copyright 2025 Google LLC
+ * SPDX-License-Identifier: MIT
+ */
+
+#ifndef MTL_COMMAND_QUEUE_H
+#define MTL_COMMAND_QUEUE_H 1
+
+#include "mtl_types.h"
+
+#include <stdint.h>
+
+mtl_command_queue *mtl_new_command_queue(mtl_device *device,
+ uint32_t cmd_buffer_count);
+
+mtl_command_buffer *mtl_new_command_buffer(mtl_command_queue *cmd_queue);
+
+#endif /* MTL_COMMAND_QUEUE_H */ \ No newline at end of file