Skip to content

Commit 1375f1f

Browse files
committed
Adjust comments
1 parent 0686901 commit 1375f1f

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/utils/gbuffer/GBufferConfig.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,31 +26,31 @@ export class GBufferConfig extends EventDispatcher<BaseEventMap> {
2626
readonly gBufferStructFields: Map<GBuffer | string, string>;
2727

2828
/**
29-
* A collection that maps GData to shader code that declares the G-Buffer struct.
29+
* A collection that maps G-Data to shader code that declares the G-Buffer struct.
3030
*/
3131

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

3434
/**
35-
* A collection that maps GData to shader code that declares the GData struct.
35+
* A collection that maps G-Data to shader code that declares the G-Data struct.
3636
*/
3737

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

4040
/**
41-
* A collection that maps GData to shader code that fills the respective GData struct field.
41+
* A collection that maps G-Data to shader code that fills the respective G-Data struct field.
4242
*/
4343

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

4646
/**
47-
* A collection that describes GData interdependencies.
47+
* A collection that describes G-Data interdependencies.
4848
*/
4949

5050
readonly gDataDependencies: Map<GData | string, Set<GData | string>>;
5151

5252
/**
53-
* A collection that describes which G-Buffer components are required for the GData.
53+
* A collection that describes which G-Buffer components are required for the G-Data.
5454
*/
5555

5656
readonly gDataBufferSources: Map<GData | string, Set<GBuffer | string>>;

0 commit comments

Comments
 (0)