@thi.ng/pixel
Advanced tools
Comparing version 0.4.4 to 0.4.5
@@ -6,2 +6,10 @@ # Change Log | ||
## [0.4.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/pixel@0.4.4...@thi.ng/pixel@0.4.5) (2020-09-13) | ||
**Note:** Version bump only for package @thi.ng/pixel | ||
## [0.4.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/pixel@0.4.3...@thi.ng/pixel@0.4.4) (2020-08-28) | ||
@@ -8,0 +16,0 @@ |
{ | ||
"name": "@thi.ng/pixel", | ||
"version": "0.4.4", | ||
"version": "0.4.5", | ||
"description": "Typed array backed, packed integer and unpacked floating point pixel buffers w/ customizable formats, blitting, dithering, conversions", | ||
@@ -34,3 +34,3 @@ "module": "./index.js", | ||
"cover": "nyc mocha test && nyc report --reporter=lcov", | ||
"clean": "rimraf *.js *.d.ts .nyc_output build coverage doc lib", | ||
"clean": "rimraf *.js *.d.ts *.map .nyc_output build coverage doc lib", | ||
"doc:readme": "ts-node -P ../../tools/tsconfig.json ../../tools/src/readme.ts", | ||
@@ -53,6 +53,6 @@ "doc": "node_modules/.bin/typedoc --mode modules --out doc --theme ../../tools/doc/typedoc-theme src", | ||
"dependencies": { | ||
"@thi.ng/api": "^6.12.3", | ||
"@thi.ng/checks": "^2.7.7", | ||
"@thi.ng/math": "^2.0.4", | ||
"@thi.ng/porter-duff": "^0.1.29" | ||
"@thi.ng/api": "^6.13.0", | ||
"@thi.ng/checks": "^2.7.8", | ||
"@thi.ng/math": "^2.1.0", | ||
"@thi.ng/porter-duff": "^0.1.30" | ||
}, | ||
@@ -65,8 +65,9 @@ "files": [ | ||
"keywords": [ | ||
"ES6", | ||
"alpha blending", | ||
"bayer matrix", | ||
"es6", | ||
"alpha", | ||
"blend", | ||
"blit", | ||
"canvas", | ||
"color channels", | ||
"color", | ||
"channel", | ||
"conversion", | ||
@@ -76,5 +77,6 @@ "float", | ||
"image", | ||
"ordered dither", | ||
"packed", | ||
"pixel buffer", | ||
"multiformat", | ||
"dither", | ||
"pixelbuffer", | ||
"typedarray", | ||
"typescript" | ||
@@ -92,3 +94,3 @@ ], | ||
}, | ||
"gitHead": "3a55c0df86c5be9c56a1e1a4c0cfcaa2809a160a" | ||
"gitHead": "83a0206aae59aa1b1b4bcb01c2b34bbe3db4844c" | ||
} |
@@ -1,2 +0,2 @@ | ||
import { Fn, Fn2, TypedArray, UIntArray } from "@thi.ng/api"; | ||
import { Fn, Fn2, FnN, TypedArray, UIntArray } from "@thi.ng/api"; | ||
import type { BlitOpts, PackedFormat, FloatFormat } from "./api"; | ||
@@ -7,3 +7,3 @@ /** @internal */ | ||
export declare const ensureChannel: (fmt: PackedFormat | FloatFormat, id: number) => import("./api").Lane | import("./api").PackedChannel; | ||
export declare const luminanceABGR: (c: number) => number; | ||
export declare const luminanceABGR: FnN; | ||
/** @internal */ | ||
@@ -10,0 +10,0 @@ export declare const clampRegion: (sx: number, sy: number, w: number, h: number, maxw: number, maxh: number, dx?: number, dy?: number) => number[]; |
213812
Updated@thi.ng/api@^6.13.0
Updated@thi.ng/checks@^2.7.8
Updated@thi.ng/math@^2.1.0
Updated@thi.ng/porter-duff@^0.1.30