Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@pixi/prepare

Package Overview
Dependencies
Maintainers
1
Versions
121
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@pixi/prepare

Plugin to allow uploading textures to the GPU

  • 5.3.4
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
133K
increased by11.43%
Maintainers
1
Weekly downloads
 
Created

What is @pixi/prepare?

@pixi/prepare is a package that is part of the PixiJS library, which is used for 2D rendering in web applications. The @pixi/prepare module is specifically designed to optimize the performance of rendering by preloading and preparing assets before they are needed in the rendering process. This helps in reducing the rendering time and improving the overall performance of the application.

What are @pixi/prepare's main functionalities?

Preloading Assets

This feature allows you to preload textures and other assets before they are needed in the rendering process. By using the prepare plugin, you can upload textures to the GPU in advance, which helps in reducing the rendering time when the assets are actually needed.

const app = new PIXI.Application();
const prepare = app.renderer.plugins.prepare;

const texture = PIXI.Texture.from('image.png');
prepare.upload(texture, () => {
  console.log('Texture is uploaded and ready to use');
});

Batching Uploads

This feature allows you to batch multiple assets together and upload them in a single operation. This is useful for optimizing the performance when you have multiple assets that need to be prepared at the same time.

const app = new PIXI.Application();
const prepare = app.renderer.plugins.prepare;

const textures = [PIXI.Texture.from('image1.png'), PIXI.Texture.from('image2.png')];
prepare.upload(textures, () => {
  console.log('All textures are uploaded and ready to use');
});

Other packages similar to @pixi/prepare

FAQs

Package last updated on 14 Dec 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc