\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.
| 706 | /// memory buffer. This is used when a member function is called without |
| 707 | /// specifying an existing command queue to use. |
| 708 | command_queue default_queue() const |
| 709 | { |
| 710 | const context &context = m_allocator.get_context(); |
| 711 | command_queue queue(context, context.get_device()); |
| 712 | return queue; |
| 713 | } |
| 714 | |
| 715 | private: |
| 716 | /// \internal_ |