Skip to content

Commit d857439

Browse files
committed
wip
1 parent 88376c6 commit d857439

File tree

4 files changed

+13
-1
lines changed

4 files changed

+13
-1
lines changed

examples/showcase/postprocessing/app.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ export default class AppAnimationLoopTemplate extends AnimationLoopTemplate {
8181
// Extract list of postprocessing-capable shader modules from the wildcard import
8282
function getShaderPasses(): Record<string, ShaderPass> {
8383
const passes: Record<string, ShaderPass> = {};
84+
debugger
8485
Object.entries(shaderModules).forEach(([key, module]) => {
8586
if (module.passes && !key.startsWith('_')) {
8687
passes[key] = module as ShaderPass;

examples/showcase/postprocessing/vite.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ const alias = {
44
'@luma.gl/constants': `${__dirname}/../../../modules/constants/src`,
55
'@luma.gl/core': `${__dirname}/../../../modules/core/src`,
66
'@luma.gl/engine': `${__dirname}/../../../modules/engine/src`,
7+
'@luma.gl/effects': `${__dirname}/../../../modules/effects/src`,
78
'@luma.gl/experimental': `${__dirname}/../../../modules/experimental/src`,
89
'@luma.gl/gltf': `${__dirname}/../../../modules/gltf/src`,
910
'@luma.gl/shadertools': `${__dirname}/../../../modules/shadertools/src`,

modules/effects/package.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,12 @@
4646
"prepublishOnly": "npm run build-minified-bundle && npm run build-dev-bundle"
4747
},
4848
"peerDependencies": {
49-
"@luma.gl/shadertools": "9.2.0-alpha.6"
49+
"@luma.gl/core": "9.2.0-alpha.6",
50+
"@luma.gl/effects": "9.2.0-alpha.6",
51+
"@luma.gl/engine": "9.2.0-alpha.6",
52+
"@luma.gl/shadertools": "9.2.0-alpha.6",
53+
"@luma.gl/webgl": "9.2.0-alpha.6",
54+
"@luma.gl/webgpu": "9.2.0-alpha.6"
5055
},
5156
"dependencies": {
5257
"@math.gl/core": "^4.1.0",

yarn.lock

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1366,7 +1366,12 @@ __metadata:
13661366
"@math.gl/core": "npm:^4.1.0"
13671367
"@math.gl/types": "npm:^4.1.0"
13681368
peerDependencies:
1369+
"@luma.gl/core": 9.2.0-alpha.6
1370+
"@luma.gl/effects": 9.2.0-alpha.6
1371+
"@luma.gl/engine": 9.2.0-alpha.6
13691372
"@luma.gl/shadertools": 9.2.0-alpha.6
1373+
"@luma.gl/webgl": 9.2.0-alpha.6
1374+
"@luma.gl/webgpu": 9.2.0-alpha.6
13701375
languageName: unknown
13711376
linkType: soft
13721377

0 commit comments

Comments
 (0)