| 1 | //************************************ bs::framework - Copyright 2018 Marko Pintera **************************************// |
|---|---|
| 2 | //*********** Licensed under the MIT license. See LICENSE.md for full terms. This notice is not to be removed. ***********// |
| 3 | #include "RenderAPI/BsEventQuery.h" |
| 4 | #include "Managers/BsQueryManager.h" |
| 5 | |
| 6 | namespace bs { namespace ct |
| 7 | { |
| 8 | SPtr<EventQuery> EventQuery::create(UINT32 deviceIdx) |
| 9 | { |
| 10 | return QueryManager::instance().createEventQuery(deviceIdx); |
| 11 | } |
| 12 | }} |