2010-04-28 13:43:52 -07:00
|
|
|
#include "Layers.h"
|
|
|
|
#include "LayerManagerOGL.h"
|
|
|
|
#include "BasicLayers.h"
|
|
|
|
#include "ImageLayers.h"
|
2010-06-06 03:37:44 -07:00
|
|
|
#ifdef MOZ_ENABLE_D3D9_LAYER
|
2010-05-25 01:43:30 -07:00
|
|
|
#include "LayerManagerD3D9.h"
|
|
|
|
#endif
|
2010-09-30 15:53:51 -07:00
|
|
|
#ifdef MOZ_ENABLE_D3D10_LAYER
|
|
|
|
#include "LayerManagerD3D10.h"
|
|
|
|
#endif
|
2010-05-18 10:32:00 -07:00
|
|
|
|
|
|
|
using namespace mozilla;
|
|
|
|
using namespace layers;
|
|
|
|
|
|
|
|
void XXXNeverCalled_Layers()
|
|
|
|
{
|
|
|
|
BasicLayerManager(nsnull);
|
|
|
|
LayerManagerOGL(nsnull);
|
2010-06-06 03:37:44 -07:00
|
|
|
#ifdef MOZ_ENABLE_D3D9_LAYER
|
2010-05-25 01:43:30 -07:00
|
|
|
LayerManagerD3D9(nsnull);
|
|
|
|
#endif
|
2010-09-30 15:53:51 -07:00
|
|
|
#ifdef MOZ_ENABLE_D3D10_LAYER
|
|
|
|
LayerManagerD3D10(nsnull);
|
|
|
|
#endif
|
2010-05-18 10:32:00 -07:00
|
|
|
}
|