Moved thread pool class to vks namespace (Refs #260)
This commit is contained in:
parent
f35ef9d7ac
commit
3805758e60
2 changed files with 2 additions and 2 deletions
|
|
@ -20,7 +20,7 @@ std::unique_ptr<T> make_unique(Args&& ...args)
|
||||||
return std::unique_ptr<T>(new T(std::forward<Args>(args)...));
|
return std::unique_ptr<T>(new T(std::forward<Args>(args)...));
|
||||||
}
|
}
|
||||||
|
|
||||||
namespace vkTools
|
namespace vks
|
||||||
{
|
{
|
||||||
class Thread
|
class Thread
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -105,7 +105,7 @@ public:
|
||||||
};
|
};
|
||||||
std::vector<ThreadData> threadData;
|
std::vector<ThreadData> threadData;
|
||||||
|
|
||||||
vkTools::ThreadPool threadPool;
|
vks::ThreadPool threadPool;
|
||||||
|
|
||||||
// Fence to wait for all command buffers to finish before
|
// Fence to wait for all command buffers to finish before
|
||||||
// presenting to the swap chain
|
// presenting to the swap chain
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue