We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1dc5e2b commit a52fd1eCopy full SHA for a52fd1e
demosys/loaders/program/single.py
@@ -10,6 +10,8 @@ def load(self):
10
if not self.meta.resolved_path:
11
raise ValueError("Cannot find program '{}'".format(self.meta.path))
12
13
+ print("Loading:", self.meta.path)
14
+
15
with open(self.meta.resolved_path, 'r') as fd:
16
shaders = program.ProgramShaders.from_single(self.meta, fd.read())
17
0 commit comments