mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2025-01-09 17:53:50 +00:00
39 lines
1.3 KiB
C++
39 lines
1.3 KiB
C++
|
// 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();
|
||
|
}
|