mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-05 17:40:39 +00:00
a9151a8c0b
* Built entirely independently of the main renderdoc build (for now). * Contains python scripts & framework for running tests on a renderdoc build, which will be run nightly.
8 lines
235 B
Python
8 lines
235 B
Python
import pkgutil
|
|
|
|
__all__ = []
|
|
for loader, module_name, is_pkg in pkgutil.walk_packages(__path__):
|
|
__all__.append(module_name)
|
|
module = loader.find_module(module_name).load_module(module_name)
|
|
globals()[module_name] = module
|