Skip to content

Commit

Permalink
Update declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
Methuselah96 committed Jan 19, 2025
1 parent faead4d commit a58f4cd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions types/three/src/renderers/common/RenderContext.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,19 +31,19 @@ declare class RenderContext {
viewportValue: Vector4;
scissor: boolean;
scissorValue: Vector4;
renderTarget: RenderTarget | null;
textures: Texture[] | null;
depthTexture: DepthTexture | null;
activeCubeFace: number;
sampleCount: number;
width: number;
height: number;
occlusionQueryCount: number;
clippingContext: ClippingContext | null;
readonly isRenderContext: true;
clippingContext?: ClippingContext | undefined;
depthClearValue?: number | undefined;
stencilClearValue?: number | undefined;
renderTarget?: RenderTarget | undefined;
activeMipmapLevel?: number | undefined;
occlusionQueryCount?: number | undefined;
/**
* Constructs a new render context.
*/
Expand Down

0 comments on commit a58f4cd

Please sign in to comment.