Skip to content

Commit

Permalink
v0.17.9
Browse files Browse the repository at this point in the history
  • Loading branch information
tsherif committed Jan 11, 2022
1 parent 293a0c0 commit 151ef6d
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v0.17.9
- Fix type for Program transform feedback mode.

## v0.17.8
- Fix type for VertexBuffer normalization.
- Only download build folder from NPM.
Expand Down
2 changes: 1 addition & 1 deletion build/module/picogl.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export const PicoGL = Object.assign({
@name PicoGL.version
@private
*/
version: "0.17.8",
version: "0.17.9",

/**
WebGL information about the current system
Expand Down
2 changes: 1 addition & 1 deletion build/module/program.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ import {
@prop {WebGLRenderingContext} gl The WebGL context.
@prop {WebGLProgram} program The WebGL program.
@prop {array} transformFeedbackVaryings Names of transform feedback varyings, if any.
@prop {GlEnum} transformFeedbackMode Capture mode of the transform feedback.
@prop {GLenum} transformFeedbackMode Capture mode of the transform feedback.
@prop {Object.<string, number>} attributeLocations Map of user-provided attribute names to indices, if any.
@prop {Object} uniforms Map of uniform names to handles.
@prop {Object} appState Tracked GL state.
Expand Down
2 changes: 1 addition & 1 deletion build/picogl.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1744,7 +1744,7 @@ export class Program {
/**
* Capture mode of the transform feedback.
*/
transformFeedbackMode: GlEnum;
transformFeedbackMode: GLenum;
/**
* Map of user-provided attribute names to indices, if any.
*/
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "picogl",
"version": "0.17.8",
"version": "0.17.9",
"description": "A minimal WebGL 2 rendering library",
"main": "build/picogl.min.js",
"module": "build/module/picogl.js",
Expand Down

0 comments on commit 151ef6d

Please sign in to comment.