2019-11-11 00:11:59 -05:00
|
|
|
#pragma once
|
|
|
|
|
|
2019-12-21 18:40:17 -05:00
|
|
|
struct IGpDisplayDriver;
|
2019-11-11 00:11:59 -05:00
|
|
|
struct GpDisplayDriverProperties;
|
|
|
|
|
|
|
|
|
|
class GpDisplayDriverFactoryD3D11
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
static IGpDisplayDriver *Create(const GpDisplayDriverProperties &properties);
|
|
|
|
|
};
|