* feat: paint event move shared texture to handle, add color space * feat: add breaking change * fix: properties. * fix: remove utf8 bom
1.1 KiB
1.1 KiB
SharedTextureHandle Object
ntHandleBuffer (optional) Windows - NT HANDLE holds the shared texture. Note that this NT HANDLE is local to current process.ioSurfaceBuffer (optional) macOS - IOSurfaceRef holds the shared texture. Note that this IOSurface is local to current process (not global).nativePixmapObject (optional) Linux - Structure contains planes of shared texture.planesObject[] Linux - Each plane's info of the shared texture.stridenumber - The strides and offsets in bytes to be used when accessing the buffers via a memory mapping. One per plane per entry.offsetnumber - The strides and offsets in bytes to be used when accessing the buffers via a memory mapping. One per plane per entry.sizenumber - Size in bytes of the plane. This is necessary to map the buffers.fdnumber - File descriptor for the underlying memory object (usually dmabuf).
modifierstring Linux - The modifier is retrieved from GBM library and passed to EGL driver.supportsZeroCopyWebGpuImportboolean Linux - Indicates whether supports zero copy import to WebGPU.