mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00: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
|
|
}
|