blob: c2be27ed2f0799298289e1508f4d9143f506d68d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "cru/win/graph/direct/resource.hpp"
#include "cru/win/graph/direct/factory.hpp"
namespace cru::platform::graph::win::direct {
DirectGraphResource::DirectGraphResource(DirectGraphFactory* factory)
: factory_(factory) {
Expects(factory);
}
IGraphFactory* DirectGraphResource::GetGraphFactory() { return factory_; }
} // namespace cru::platform::graph::win::direct
|