Panda3D
pandafx.cxx
1 // Filename: pandafx.cxx
2 // Created by: drose (11Dec01)
3 //
4 ////////////////////////////////////////////////////////////////////
5 
6 #include "pandafx.h"
7 
8 #include "config_distort.h"
9 
10 // By including checkPandaVersion.h, we guarantee that runtime
11 // attempts to load libpandafx.so/.dll will fail if they inadvertently
12 // link with the wrong version of libdtool.so/.dll.
13 
14 #include "checkPandaVersion.h"
15 
16 ////////////////////////////////////////////////////////////////////
17 // Function: init_libpandafx
18 // Description: Initializes the library. This must be called at
19 // least once before any of the functions or classes in
20 // this library can be used. Normally it will be
21 // called by the static initializers and need not be
22 // called explicitly, but special cases exist.
23 ////////////////////////////////////////////////////////////////////
24 void
25 init_libpandafx() {
26  init_libdistort();
27 }