Skip to content

Commit

Permalink
Fixed #50: Uniform command format
Browse files Browse the repository at this point in the history
  • Loading branch information
sebavan committed Aug 1, 2017
1 parent 7d53212 commit e3914a4
Show file tree
Hide file tree
Showing 9 changed files with 454 additions and 7 deletions.
2 changes: 1 addition & 1 deletion dist/spector.bundle.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/spector.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1099,6 +1099,7 @@ declare namespace SPECTOR.Commands {
createCapture(functionInformation: IFunctionInformation, commandCaptureId: number): ICommandCapture;
protected transformCapture(commandCapture: ICommandCapture): void;
protected stringify(args: IArguments, result: any): string;
protected stringifyUniform(args: IArguments): string;
protected stringifyArgs(args: IArguments): string[];
protected stringifyResult(result: any): string;
protected stringifyValue(value: any): string;
Expand Down
18 changes: 17 additions & 1 deletion dist/spector.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/spector.js.map

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion documentation/build.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ Once ```npm start``` has been launched, you can access the following samples to
9. [Buffer View Mip Texture](http://localhost:1337/sample/index.html?sample=bufferViewMipTexture): Test to do a capture containing a cube texture created from bufferview data uploading custom mips.
10. [Instanced](http://localhost:1337/sample/index.html?sample=instanced): Test to do a capture of instanced objects.
11. [Float sized FrameBuffer](http://localhost:1337/sample/index.html?sample=floatSizedFrameBuffer): Test to do a capture containing a none integer based sized FrameBuffer.
12. [Custom Metadata](http://localhost:1337/sample/index.html?sample=customMetadata): Test to do a capture containing custom metadata.
12. [Uniform Command](http://localhost:1337/sample/index.html?sample=uniformCommand): Test to do a capture a uniform with a value matching a webgl constant.
13. [Custom Metadata](http://localhost:1337/sample/index.html?sample=customMetadata): Test to do a capture containing custom metadata.

You can also add &noSpy=1 at the end of the previous Urls to test without enabling the full spy before starting your rendering engine.

Expand Down
1 change: 1 addition & 0 deletions documentation/changeLogs.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ This realeas enables command comparison and fixes a couple of reported issues:
- Add MSAA render buffer capture.
- [Add Primitives Count per type](https://github.com/BabylonJS/Spector.js/issues/43).
- [Allow capture of float based width/height of FrameBuffer](https://github.com/BabylonJS/Spector.js/issues/52)
- [Fix uniform command Format](https://github.com/BabylonJS/Spector.js/issues/50)

## v0.2.3 Typos and MultiTabs
This simply contains another quick fix concerning typos in readme and the extension popup. As a little bonus, you can now capture to a new tab.
Expand Down
2 changes: 1 addition & 1 deletion extensions/spector.bundle.js

Large diffs are not rendered by default.

Loading

0 comments on commit e3914a4

Please sign in to comment.