Socket
Socket
Sign inDemoInstall

@pixi/core

Package Overview
Dependencies
32
Maintainers
2
Versions
122
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 7.3.2 to 7.3.3

2

lib/background/BackgroundSystem.d.ts

@@ -11,3 +11,3 @@ import { Color } from '@pixi/color';

*/
export declare type BackgroundSytemOptions = BackgroundSystemOptions;
export type BackgroundSytemOptions = BackgroundSystemOptions;
/**

@@ -14,0 +14,0 @@ * Options for the background system.

@@ -48,3 +48,3 @@ import { BUFFER_TYPE } from '@pixi/constants';

* @private
* @type {Object<number, GLBuffer>}
* @type {Record<number, GLBuffer>}
*/

@@ -51,0 +51,0 @@ _glBuffers: {

@@ -28,3 +28,3 @@ "use strict";

var utils__namespace = /* @__PURE__ */ _interopNamespaceDefault(utils$1);
const VERSION = "7.3.2";
const VERSION = "7.3.3";
exports.utils = utils__namespace;

@@ -31,0 +31,0 @@ exports.autoDetectRenderer = autoDetectRenderer.autoDetectRenderer;

@@ -67,3 +67,3 @@ import type { MSAA_QUALITY, RENDERER_TYPE } from '@pixi/constants';

*/
export declare type IRenderOptions = IRendererOptions;
export type IRenderOptions = IRendererOptions;
export interface IRendererRenderOptions {

@@ -70,0 +70,0 @@ renderTexture?: RenderTexture;

import { MASK_TYPES } from '@pixi/constants';
import type { COLOR_MASK_BITS, MSAA_QUALITY } from '@pixi/constants';
import type { MSAA_QUALITY } from '@pixi/constants';
import type { Matrix, Rectangle } from '@pixi/math';

@@ -52,5 +52,8 @@ import type { IFilterTarget } from '../filters/IFilterTarget';

enabled: boolean;
/** Color mask. */
colorMask: COLOR_MASK_BITS;
/**
* Color mask.
* @see PIXI.COLOR_MASK_BITS
*/
colorMask: number;
/**
* The sprite mask filter wrapped in an array.

@@ -57,0 +60,0 @@ * @private

import type { Dict } from '@pixi/utils';
import type { IUniformData } from '../Program';
import type { UniformGroup } from '../UniformGroup';
export declare type UniformsSyncCallback = (...args: any[]) => void;
export type UniformsSyncCallback = (...args: any[]) => void;
interface UBOElement {

@@ -6,0 +6,0 @@ data: IUniformData;

import type { Dict } from '@pixi/utils';
import type { UniformGroup } from '../UniformGroup';
export declare type UniformsSyncCallback = (...args: any[]) => void;
export type UniformsSyncCallback = (...args: any[]) => void;
export declare function generateUniformsSync(group: UniformGroup, uniformData: Dict<any>): UniformsSyncCallback;

@@ -13,3 +13,3 @@ "use strict";

const { renderer } = this;
renderer.runners.init.emit(renderer.options), options.hello && console.log(`PixiJS 7.3.2 - ${renderer.rendererLogId} - https://pixijs.com`), renderer.resize(renderer.screen.width, renderer.screen.height);
renderer.runners.init.emit(renderer.options), options.hello && console.log(`PixiJS 7.3.3 - ${renderer.rendererLogId} - https://pixijs.com`), renderer.resize(renderer.screen.width, renderer.screen.height);
}

@@ -16,0 +16,0 @@ destroy() {

@@ -28,3 +28,3 @@ import { BLEND_MODES } from '@pixi/constants';

*/
blendMode: BLEND_MODES;
blendMode: BLEND_MODES | -1;
/** Whether current blend equation is different */

@@ -31,0 +31,0 @@ protected _blendEq: boolean;

@@ -10,3 +10,3 @@ import { ALPHA_MODES, FORMATS, MIPMAP_MODES, SCALE_MODES, TARGETS, TYPES, WRAP_MODES } from '@pixi/constants';

import type { BufferType, IBufferResourceOptions } from './resources/BufferResource';
export declare type ImageSource = HTMLImageElement | HTMLVideoElement | ImageBitmap | ICanvas;
export type ImageSource = HTMLImageElement | HTMLVideoElement | ImageBitmap | ICanvas;
export interface IBaseTextureOptions<RO = any> {

@@ -13,0 +13,0 @@ alphaMode?: ALPHA_MODES;

@@ -7,6 +7,6 @@ import type { ISize } from '@pixi/math';

import type { IVideoResourceOptions } from './VideoResource';
export declare type IResourcePluginOptions = {
export type IResourcePluginOptions = {
[key: string]: any;
};
export declare type IAutoDetectOptions = ISize | ICubeResourceOptions | IImageResourceOptions | ISVGResourceOptions | IVideoResourceOptions | IResourcePluginOptions;
export type IAutoDetectOptions = ISize | ICubeResourceOptions | IImageResourceOptions | ISVGResourceOptions | IVideoResourceOptions | IResourcePluginOptions;
/**

@@ -13,0 +13,0 @@ * Shape of supported resource plugins

@@ -6,3 +6,3 @@ import { Resource } from './Resource';

import type { GLTexture } from '../GLTexture';
export declare type BufferType = null | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | Uint16Array | Int32Array | Uint32Array | Float32Array;
export type BufferType = null | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | Uint16Array | Int32Array | Uint32Array | Float32Array;
/**

@@ -9,0 +9,0 @@ * Constructor options for BufferResource.

@@ -11,3 +11,3 @@ import { Point, Rectangle } from '@pixi/math';

import type { TextureMatrix } from './TextureMatrix';
export declare type TextureSource = string | BaseTexture | ImageSource;
export type TextureSource = string | BaseTexture | ImageSource;
/**

@@ -14,0 +14,0 @@ * Stores the width of the non-scalable borders, for example when used with {@link PIXI.NineSlicePlane} texture.

{
"name": "@pixi/core",
"version": "7.3.2",
"version": "7.3.3",
"main": "lib/index.js",

@@ -43,12 +43,12 @@ "module": "lib/index.mjs",

"dependencies": {
"@pixi/color": "7.3.2",
"@pixi/constants": "7.3.2",
"@pixi/extensions": "7.3.2",
"@pixi/math": "7.3.2",
"@pixi/runner": "7.3.2",
"@pixi/settings": "7.3.2",
"@pixi/ticker": "7.3.2",
"@pixi/utils": "7.3.2",
"@pixi/color": "7.3.3",
"@pixi/constants": "7.3.3",
"@pixi/extensions": "7.3.3",
"@pixi/math": "7.3.3",
"@pixi/runner": "7.3.3",
"@pixi/settings": "7.3.3",
"@pixi/ticker": "7.3.3",
"@pixi/utils": "7.3.3",
"@types/offscreencanvas": "^2019.6.4"
}
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc