You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.4 KiB
C
52 lines
1.4 KiB
C
|
|
#ifndef VTKRENDERINGOPENGL_EXPORT_H
|
|
#define VTKRENDERINGOPENGL_EXPORT_H
|
|
|
|
#ifdef VTKRENDERINGOPENGL_STATIC_DEFINE
|
|
# define VTKRENDERINGOPENGL_EXPORT
|
|
# define VTKRENDERINGOPENGL_NO_EXPORT
|
|
#else
|
|
# ifndef VTKRENDERINGOPENGL_EXPORT
|
|
# ifdef vtkRenderingOpenGL_EXPORTS
|
|
/* We are building this library */
|
|
# define VTKRENDERINGOPENGL_EXPORT __declspec(dllexport)
|
|
# else
|
|
/* We are using this library */
|
|
# define VTKRENDERINGOPENGL_EXPORT __declspec(dllimport)
|
|
# endif
|
|
# endif
|
|
|
|
# ifndef VTKRENDERINGOPENGL_NO_EXPORT
|
|
# define VTKRENDERINGOPENGL_NO_EXPORT
|
|
# endif
|
|
#endif
|
|
|
|
#ifndef VTKRENDERINGOPENGL_DEPRECATED
|
|
# define VTKRENDERINGOPENGL_DEPRECATED __declspec(deprecated)
|
|
# define VTKRENDERINGOPENGL_DEPRECATED_EXPORT VTKRENDERINGOPENGL_EXPORT __declspec(deprecated)
|
|
# define VTKRENDERINGOPENGL_DEPRECATED_NO_EXPORT VTKRENDERINGOPENGL_NO_EXPORT __declspec(deprecated)
|
|
#endif
|
|
|
|
#define DEFINE_NO_DEPRECATED 0
|
|
#if DEFINE_NO_DEPRECATED
|
|
# define VTKRENDERINGOPENGL_NO_DEPRECATED
|
|
#endif
|
|
|
|
#include "vtkRenderingOpenGLConfigure.h"
|
|
|
|
/* AutoInit dependencies. */
|
|
#include "vtkFiltersCoreModule.h"
|
|
#include "vtkRenderingCoreModule.h"
|
|
#include "vtkRenderingCoreModule.h"
|
|
|
|
/* AutoInit implementations. */
|
|
#if defined(vtkRenderingOpenGL_INCLUDE)
|
|
# include vtkRenderingOpenGL_INCLUDE
|
|
#endif
|
|
#if defined(vtkRenderingOpenGL_AUTOINIT)
|
|
# include "vtkAutoInit.h"
|
|
VTK_AUTOINIT(vtkRenderingOpenGL)
|
|
#endif
|
|
|
|
#endif
|