2020-03-20 22:10:19 +00:00
|
|
|
/*
|
|
|
|
* Modern effects for a modern Streamer
|
|
|
|
* Copyright (C) 2020 Michael Fabian Dirks
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#include <memory>
|
2020-04-05 04:13:14 +00:00
|
|
|
#include "nvidia-cuda.hpp"
|
2020-03-20 22:10:19 +00:00
|
|
|
|
|
|
|
namespace nvidia::cuda {
|
|
|
|
class stream {
|
|
|
|
std::shared_ptr<::nvidia::cuda::cuda> _cuda;
|
2020-07-12 16:41:50 +00:00
|
|
|
::nvidia::cuda::stream_t _stream;
|
2020-03-20 22:10:19 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
~stream();
|
2020-11-05 05:39:01 +00:00
|
|
|
stream(::nvidia::cuda::stream_flags flags = ::nvidia::cuda::stream_flags::DEFAULT, int32_t priority = 0);
|
2020-03-20 22:10:19 +00:00
|
|
|
|
2020-06-14 17:17:26 +00:00
|
|
|
::nvidia::cuda::stream_t get();
|
2020-11-08 05:47:47 +00:00
|
|
|
|
|
|
|
void synchronize();
|
2020-03-20 22:10:19 +00:00
|
|
|
};
|
|
|
|
} // namespace nvidia::cuda
|