Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: greggman/twgl.js
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v5.0.4
Choose a base ref
...
head repository: greggman/twgl.js
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v5.1.0
Choose a head ref
  • 10 commits
  • 31 files changed
  • 2 contributors

Commits on Oct 1, 2022

  1. test examples

    greggman committed Oct 1, 2022
    Copy the full SHA
    6bab1b5 View commit details

Commits on Oct 16, 2022

  1. ...

    greggman committed Oct 16, 2022
    Copy the full SHA
    78ef7d9 View commit details
  2. remove stats

    greggman committed Oct 16, 2022
    Copy the full SHA
    76bd210 View commit details

Commits on Oct 17, 2022

  1. bump deps

    greggman committed Oct 17, 2022
    Copy the full SHA
    b3e6770 View commit details
  2. bump deps

    greggman committed Oct 17, 2022
    Copy the full SHA
    2782cc5 View commit details
  3. bump deps

    greggman committed Oct 17, 2022
    Copy the full SHA
    8ae289a View commit details

Commits on Oct 18, 2022

  1. cleanup

    greggman committed Oct 18, 2022
    Copy the full SHA
    20a2d80 View commit details
  2. bump to 5.1.0

    greggman committed Oct 18, 2022
    Copy the full SHA
    40f9d48 View commit details
  3. fix types

    greggman committed Oct 18, 2022
    Copy the full SHA
    aec377c View commit details
  4. build

    greggman committed Oct 18, 2022
    Copy the full SHA
    54d4d2e View commit details
4 changes: 4 additions & 0 deletions CHANGELIST.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change List

* 5.1.0

* Allow FullArraySpec.type to be typedArray type or GL type

* 5.0.2

* Make isX functions (internal) work across realms
5 changes: 2 additions & 3 deletions Gruntfile.js
Original file line number Diff line number Diff line change
@@ -310,9 +310,8 @@ module.exports = function(grunt) {
});

grunt.registerTask('makeindex', function() {
const marked = require('marked');
const fs = require('fs');
marked.setOptions({ rawHtml: true });
const {marked} = require('marked');
const fs = require('fs');
const html = marked(fs.readFileSync('README.md', {encoding: 'utf8'}));
const template = fs.readFileSync('build/templates/index.template', {encoding: 'utf8'});
let content = replaceParams(template, {
5 changes: 3 additions & 2 deletions dist/5.x/twgl-full.d.ts
Original file line number Diff line number Diff line change
@@ -24,9 +24,9 @@ export type AttribInfo = {
};
export type FullArraySpec = {
value?: number[] | ArrayBufferView;
data: number | number[] | ArrayBufferView;
data?: number | number[] | ArrayBufferView;
numComponents?: number;
type?: Function;
type?: number | TypedArrayConstructor;
size?: number;
normalize?: boolean;
stride?: number;
@@ -235,6 +235,7 @@ export function createTextures(gl: WebGLRenderingContext, options: {

export function setAttributePrefix(prefix: string): void;
export function createBufferFromTypedArray(gl: WebGLRenderingContext, typedArray: ArrayBuffer | SharedArrayBuffer | ArrayBufferView | WebGLBuffer, type?: number, drawType?: number): WebGLBuffer;
export type TypedArrayConstructor = Int8ArrayConstructor | Uint8ArrayConstructor | Int16ArrayConstructor | Uint16ArrayConstructor | Int32ArrayConstructor | Uint32ArrayConstructor | Float32ArrayConstructor;
export function createAttribsFromArrays(gl: WebGLRenderingContext, arrays: Arrays, srcBufferInfo?: BufferInfo): {
[key: string]: AttribInfo;
};
Loading