Skip to content

Commit

Permalink
Fix TypeDoc issues
Browse files Browse the repository at this point in the history
  • Loading branch information
vanruesc committed Sep 26, 2024
1 parent c9a211a commit 6b84c06
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/passes/GeometryPass.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export interface GeometryPassOptions {
/**
* The type of the color buffer.
*
* @defaultValue {@link UnsignedByteType}
* @defaultValue UnsignedByteType
*/

frameBufferType?: TextureDataType;
Expand Down
12 changes: 6 additions & 6 deletions src/utils/GBufferConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,37 +22,37 @@ export class GBufferConfig extends EventDispatcher<BaseEventMap> {
static readonly EVENT_CHANGE = "change";

/**
* A collection that maps {@link GBuffer} components to G-Buffer texture configurations.
* A collection that maps GBuffer components to G-Buffer texture configurations.
*/

readonly textureConfigs: Map<GBuffer | string, GBufferTextureConfig>;

/**
* A collection that maps {@link GBuffer} components to G-Buffer struct field names that are used in effects.
* A collection that maps GBuffer components to G-Buffer struct field names that are used in effects.
*/

readonly gBufferStructFields: Map<GBuffer | string, string>;

/**
* A collection that maps {@link GData} to shader code that declares the GBuffer struct.
* A collection that maps GData to shader code that declares the GBuffer struct.
*/

readonly gBufferStructDeclaration: Map<GData | string, string>;

/**
* A collection that maps {@link GData} to shader code that declares the GData struct.
* A collection that maps GData to shader code that declares the GData struct.
*/

readonly gDataStructDeclaration: Map<GData | string, string>;

/**
* A collection that maps {@link GData} to shader code that fills the respective GData struct field.
* A collection that maps GData to shader code that fills the respective GData struct field.
*/

readonly gDataStructInitialization: Map<GData | string, string>;

/**
* A collection that describes {@link GData} interdependencies.
* A collection that describes GData interdependencies.
*/

readonly gDataDependencies: Map<GData | string, Set<GData | string>>;
Expand Down

0 comments on commit 6b84c06

Please sign in to comment.