\internal_ Returns a command queue usable to issue commands for the vector's memory buffer. This is used when a member function is called without specifying an existing command queue to use.
| 768 | /// memory buffer. This is used when a member function is called without |
| 769 | /// specifying an existing command queue to use. |
| 770 | command_queue default_queue() const |
| 771 | { |
| 772 | const context &context = m_allocator.get_context(); |
| 773 | command_queue queue(context, context.get_device()); |
| 774 | return queue; |
| 775 | } |
| 776 | |
| 777 | private: |
| 778 | /// \internal_ |
no test coverage detected