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