Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ibgreen committed Feb 24, 2024
1 parent 0dfad83 commit 3f8e04a
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions modules/engine/src/model/model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,8 @@ export class Model {
transformFeedback: undefined,
shaderAssembler: ShaderAssembler.getDefaultShaderAssembler(),

debugShaders: undefined
debugShaders: undefined,
ignoreUnknownAttributes: undefined
};

readonly device: Device;
Expand Down Expand Up @@ -609,11 +610,11 @@ export class Model {

const fs = this.fs
? this.shaderFactory.createShader({
id: `${this.id}-fragment`,
stage: 'fragment',
source: this.fs,
debug: this.props.debugShaders
})
id: `${this.id}-fragment`,
stage: 'fragment',
source: this.fs,
debug: this.props.debugShaders
})
: null;

this.pipeline = this.pipelineFactory.createRenderPipeline({
Expand Down

0 comments on commit 3f8e04a

Please sign in to comment.