mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
26 lines
503 B
C++
26 lines
503 B
C++
#include "Layers.h"
|
|
#include "LayerManagerOGL.h"
|
|
#include "BasicLayers.h"
|
|
#include "ImageLayers.h"
|
|
#ifdef MOZ_ENABLE_D3D9_LAYER
|
|
#include "LayerManagerD3D9.h"
|
|
#endif
|
|
#ifdef MOZ_ENABLE_D3D10_LAYER
|
|
#include "LayerManagerD3D10.h"
|
|
#endif
|
|
|
|
using namespace mozilla;
|
|
using namespace layers;
|
|
|
|
void XXXNeverCalled_Layers()
|
|
{
|
|
BasicLayerManager(nsnull);
|
|
LayerManagerOGL(nsnull);
|
|
#ifdef MOZ_ENABLE_D3D9_LAYER
|
|
LayerManagerD3D9(nsnull);
|
|
#endif
|
|
#ifdef MOZ_ENABLE_D3D10_LAYER
|
|
LayerManagerD3D10(nsnull);
|
|
#endif
|
|
}
|