|
|
|
|
@ -25,7 +25,7 @@ import magnum.trade
|
|
|
|
|
# So the doc see everything |
|
|
|
|
# TODO: use just +=, m.css should reorder this on its own |
|
|
|
|
corrade.__all__ = ['containers', 'pluginmanager', 'BUILD_STATIC', 'BUILD_MULTITHREADED', 'TARGET_UNIX', 'TARGET_APPLE', 'TARGET_IOS', 'TARGET_IOS_SIMULATOR', 'TARGET_WINDOWS', 'TARGET_WINDOWS_RT', 'TARGET_EMSCRIPTEN', 'TARGET_ANDROID'] |
|
|
|
|
magnum.__all__ = ['math', 'gl', 'meshtools', 'platform', 'primitives', 'shaders', 'scenegraph', 'text', 'trade', 'BUILD_STATIC', 'TARGET_GL', 'TARGET_GLES', 'TARGET_GLES2', 'TARGET_WEBGL', 'TARGET_VK'] + magnum.__all__ |
|
|
|
|
magnum.__all__ = ['math', 'gl', 'meshtools', 'platform', 'primitives', 'shaders', 'scenegraph', 'text', 'trade', 'BUILD_STATIC', 'TARGET_GL', 'TARGET_GLES', 'TARGET_GLES2', 'TARGET_WEBGL', 'TARGET_EGL', 'TARGET_VK'] + magnum.__all__ |
|
|
|
|
|
|
|
|
|
# hide values of the preprocessor defines to avoid confusion by assigning a |
|
|
|
|
# class without __repr__ to them |
|
|
|
|
@ -46,6 +46,7 @@ magnum.TARGET_GL = DoNotPrintValue()
|
|
|
|
|
magnum.TARGET_GLES = DoNotPrintValue() |
|
|
|
|
magnum.TARGET_GLES2 = DoNotPrintValue() |
|
|
|
|
magnum.TARGET_WEBGL = DoNotPrintValue() |
|
|
|
|
magnum.TARGET_EGL = DoNotPrintValue() |
|
|
|
|
magnum.TARGET_VK = DoNotPrintValue() |
|
|
|
|
|
|
|
|
|
# TODO ugh... can this be expressed directly in pybind? |
|
|
|
|
|