Moved thread pool class to vks namespace (Refs #260)

This commit is contained in:
saschawillems 2017-02-12 13:39:08 +01:00
parent f35ef9d7ac
commit 3805758e60
2 changed files with 2 additions and 2 deletions

View file

@ -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
{ {

View file

@ -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