comparison setup.py @ 515:b3193b43a86c

Add an indirection layer for textures, to cope with drivers assigning them random names.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Fri, 06 Dec 2013 19:02:42 +0100
parents 5e3e0b09a531
children 53129f3a54af
comparison
equal deleted inserted replaced
514:3d4410de78e1 515:b3193b43a86c
113 license='GPLv3', 113 license='GPLv3',
114 packages=packages, 114 packages=packages,
115 ext_modules=cythonize(extensions, nthreads=4, 115 ext_modules=cythonize(extensions, nthreads=4,
116 compiler_directives={'infer_types': True, 116 compiler_directives={'infer_types': True,
117 'infer_types.verbose': True}, 117 'infer_types.verbose': True},
118 compile_time_env={'MAX_TEXTURES': 1024, 118 compile_time_env={'MAX_TEXTURES': 128,
119 'MAX_ELEMENTS': 640 * 4 * 3, 119 'MAX_ELEMENTS': 640 * 4 * 3,
120 'MAX_CHANNELS': 26, 120 'MAX_CHANNELS': 26,
121 'USE_OPENGL': use_opengl, 121 'USE_OPENGL': use_opengl,
122 'USE_GLEW': is_windows}), 122 'USE_GLEW': is_windows}),
123 scripts=['eosd', 'anmviewer'], 123 scripts=['eosd', 'anmviewer'],