Add WebGPU renderer (#648)

This commit is contained in:
redphx
2025-02-02 21:37:21 +07:00
parent 39ecef976c
commit fd665b6fcd
31 changed files with 1428 additions and 841 deletions

View File

@@ -1,7 +1,9 @@
type StreamPlayerOptions = Partial<{
processing: string,
import type { StreamVideoProcessing } from "@/enums/pref-values";
type StreamPlayerOptions = {
processing: StreamVideoProcessing,
sharpness: number,
saturation: number,
contrast: number,
brightness: number,
}>;
};