Poodletooth-iLand/build/nirai/panda3d/panda/metalibs/pandadx9/pandadx9.cxx

39 lines
1.3 KiB
C++
Raw Normal View History

2015-11-14 19:28:53 +00:00
// Filename: pandadx.cxx
// Created by: masad (15Jan04)
//
////////////////////////////////////////////////////////////////////
#include "pandadx9.h"
#include "config_dxgsg9.h"
#include "wdxGraphicsPipe9.h"
// By including checkPandaVersion.h, we guarantee that runtime
// attempts to load libpandadx9.dll will fail if they
// inadvertently link with the wrong version of libdtool.dll.
#include "checkPandaVersion.h"
////////////////////////////////////////////////////////////////////
// Function: init_libpandadx
// Description: Initializes the library. This must be called at
// least once before any of the functions or classes in
// this library can be used. Normally it will be
// called by the static initializers and need not be
// called explicitly, but special cases exist.
////////////////////////////////////////////////////////////////////
void
init_libpandadx9() {
init_libdxgsg9();
}
////////////////////////////////////////////////////////////////////
// Function: get_pipe_type_pandadx9
// Description: Returns the TypeHandle index of the recommended
// graphics pipe type defined by this module.
////////////////////////////////////////////////////////////////////
int
get_pipe_type_pandadx9() {
return wdxGraphicsPipe9::get_class_type().get_index();
}