Skip to content

Commit

Permalink
fix: type error
Browse files Browse the repository at this point in the history
  • Loading branch information
Manfred Cheung committed Sep 22, 2023
1 parent 299e80e commit dc9e90e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/renderer/OffscreenBuffer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ export class OffscreenBuffer {
}

private context: App;
protected colorTarget: Texture;
protected depthTarget: Renderbuffer;
protected frameBuffer: Framebuffer;
public colorTarget: Texture;
private depthTarget: Renderbuffer;
private frameBuffer: Framebuffer;

constructor(context: App) {
this.context = context;
Expand Down

0 comments on commit dc9e90e

Please sign in to comment.