API Documentation
Loading...
Searching...
No Matches
VulkanQueue.h
Go to the documentation of this file.
1/*--------------------------------------------------------------------------------------------
2Copyright (c) 2019, NDEVR LLC
3tyler.parke@ndevr.org
4 __ __ ____ _____ __ __ _______
5 | \ | | | __ \ | ___|\ \ / / | __ \
6 | \ | | | | \ \ | |___ \ \ / / | |__) |
7 | . \| | | |__/ / | |___ \ V / | _ /
8 | |\ |_|_____/__|_____|___\_/____| | \ \
9 |__| \__________________________________| \__\
10
11Subject to the terms of the Enterprise+ Agreement, NDEVR hereby grants
12Licensee a limited, non-exclusive, non-transferable, royalty-free license
13(without the right to sublicense) to use the API solely for the purpose of
14Licensee's internal development efforts to develop applications for which
15the API was provided.
16
17The above copyright notice and this permission notice shall be included in all
18copies or substantial portions of the Software.
19
20THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
21INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
22PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
23FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
24OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
25DEALINGS IN THE SOFTWARE.
26
27Library: Graphics
28File: VulkanQueue
29Included in API: True
30Author(s): Tyler Parke
31 *-----------------------------------------------------------------------------------------**/
32#pragma once
33#include "VulkanDefines.h"
36#include "Base/Headers/RWLock.h"
37struct VkQueue_T;
38struct VkCommandPool_T;
39struct VkCommandBuffer_T;
40namespace NDEVR
41{
42 class VulkanInstance;
44 {
45 public:
46 VulkanQueueCore(const DynamicPointer<VulkanInstance>& instance, VkQueue_T* queue, VkCommandPool_T* command_pool);
48 VkQueue_T* queue;
49 VkCommandPool_T* command_pool;
50 uint04 lastThread() const;
51 uint04 currentThread() const;
52 void setThread(uint04 thread);
53 void clearLastThread();
54 protected:
58 };
60 {
61 public:
64 VkQueue_T* queue() { return m_core->queue; };
65 VkCommandPool_T* command_pool() { return m_core->command_pool; };
66 protected:
69 };
70}
Provides a modifiable pointer that has shared ownership of a dynamically allocated object.
Definition Pointer.hpp:319
Definition VulkanQueue.h:44
~VulkanQueueCore()
Definition VulkanQueue.cpp:36
VulkanQueueCore(const DynamicPointer< VulkanInstance > &instance, VkQueue_T *queue, VkCommandPool_T *command_pool)
Definition VulkanQueue.cpp:29
void clearLastThread()
Definition VulkanQueue.cpp:52
void setThread(uint04 thread)
Definition VulkanQueue.cpp:47
DynamicPointer< VulkanInstance > m_instance
Definition VulkanQueue.h:57
VkQueue_T * queue
Definition VulkanQueue.h:48
VkCommandPool_T * command_pool
Definition VulkanQueue.h:49
uint04 currentThread() const
Definition VulkanQueue.cpp:43
uint04 m_current_thread
Definition VulkanQueue.h:56
uint04 m_last_thread
Definition VulkanQueue.h:55
uint04 lastThread() const
Definition VulkanQueue.cpp:39
Definition VulkanQueue.h:60
VkQueue_T * queue()
Definition VulkanQueue.h:64
VulkanQueue(VulkanQueueCore *core)
Definition VulkanQueue.cpp:17
~VulkanQueue()
Definition VulkanQueue.cpp:25
VulkanQueueCore * m_core
Definition VulkanQueue.h:67
WLock m_queue_lock
Definition VulkanQueue.h:68
VkCommandPool_T * command_pool()
Definition VulkanQueue.h:65
Used to lock a particular variable for writing. Only one write lock can be created when no read locks...
Definition RWLock.h:115
Definition ACIColor.h:37
uint32_t uint04
-Defines an alias representing a 4 byte, unsigned integer -Can represent exact integer values 0 throu...
Definition BaseValues.hpp:115