123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263 |
- import type { Nullable } from "../types";
- import type { Effect } from "../Materials/effect";
- import type { IMatrixLike, IVector2Like, IVector3Like, IVector4Like, IColor3Like, IColor4Like, IQuaternionLike } from "../Maths/math.like";
- /**
- * Class used to store and describe the pipeline context associated with an effect
- */
- export interface IPipelineContext {
- /**
- * Gets a boolean indicating that this pipeline context is supporting asynchronous creating
- */
- readonly isAsync: boolean;
- /**
- * Gets a boolean indicating that the context is ready to be used (like shaders / pipelines are compiled and ready for instance)
- */
- readonly isReady: boolean;
- /** @internal */
- _name?: string;
- /** @internal */
- _getVertexShaderCode(): string | null;
- /** @internal */
- _getFragmentShaderCode(): string | null;
- /** @internal */
- _handlesSpectorRebuildCallback?(onCompiled: (compiledObject: any) => void): void;
- /** @internal */
- _fillEffectInformation(effect: Effect, uniformBuffersNames: {
- [key: string]: number;
- }, uniformsNames: string[], uniforms: {
- [key: string]: Nullable<WebGLUniformLocation>;
- }, samplerList: string[], samplers: {
- [key: string]: number;
- }, attributesNames: string[], attributes: number[]): void;
- /** Releases the resources associated with the pipeline. */
- dispose(): void;
- /**
- * Sets an integer value on a uniform variable.
- * @param uniformName Name of the variable.
- * @param value Value to be set.
- */
- setInt(uniformName: string, value: number): void;
- /**
- * Sets an int2 value on a uniform variable.
- * @param uniformName Name of the variable.
- * @param x First int in int2.
- * @param y Second int in int2.
- */
- setInt2(uniformName: string, x: number, y: number): void;
- /**
- * Sets an int3 value on a uniform variable.
- * @param uniformName Name of the variable.
- * @param x First int in int3.
- * @param y Second int in int3.
- * @param z Third int in int3.
- */
- setInt3(uniformName: string, x: number, y: number, z: number): void;
- /**
- * Sets an int4 value on a uniform variable.
- * @param uniformName Name of the variable.
- * @param x First int in int4.
- * @param y Second int in int4.
- * @param z Third int in int4.
- * @param w Fourth int in int4.
- */
- setInt4(uniformName: string, x: number, y: number, z: number, w: number): void;
- /**
- * Sets an int array on a uniform variable.
- * @param uniformName Name of the variable.
- * @param array array to be set.
- */
- setIntArray(uniformName: string, array: Int32Array): void;
- /**
- * Sets an int array 2 on a uniform variable. (Array is specified as single array eg. [1,2,3,4] will result in [[1,2],[3,4]] in the shader)
- * @param uniformName Name of the variable.
- * @param array array to be set.
- */
- setIntArray2(uniformName: string, array: Int32Array): void;
- /**
- * Sets an int array 3 on a uniform variable. (Array is specified as single array eg. [1,2,3,4,5,6] will result in [[1,2,3],[4,5,6]] in the shader)
- * @param uniformName Name of the variable.
- * @param array array to be set.
- */
- setIntArray3(uniformName: string, array: Int32Array): void;
- /**
- * Sets an int array 4 on a uniform variable. (Array is specified as single array eg. [1,2,3,4,5,6,7,8] will result in [[1,2,3,4],[5,6,7,8]] in the shader)
- * @param uniformName Name of the variable.
- * @param array array to be set.
- */
- setIntArray4(uniformName: string, array: Int32Array): void;
- /**
- * Sets an unsigned integer value on a uniform variable.
- * @param uniformName Name of the variable.
- * @param value Value to be set.
- */
- setUInt(uniformName: string, value: number): void;
- /**
- * Sets an unsigned int2 value on a uniform variable.
- * @param uniformName Name of the variable.
- * @param x First unsigned int in uint2.
- * @param y Second unsigned int in uint2.
- */
- setUInt2(uniformName: string, x: number, y: number): void;
- /**
- * Sets an unsigned int3 value on a uniform variable.
- * @param uniformName Name of the variable.
- * @param x First unsigned int in uint3.
- * @param y Second unsigned int in uint3.
- * @param z Third unsigned int in uint3.
- */
- setUInt3(uniformName: string, x: number, y: number, z: number): void;
- /**
- * Sets an unsigned int4 value on a uniform variable.
- * @param uniformName Name of the variable.
- * @param x First unsigned int in uint4.
- * @param y Second unsigned int in uint4.
- * @param z Third unsigned int in uint4.
- * @param w Fourth unsigned int in uint4.
- */
- setUInt4(uniformName: string, x: number, y: number, z: number, w: number): void;
- /**
- * Sets an unsigned int array on a uniform variable.
- * @param uniformName Name of the variable.
- * @param array array to be set.
- */
- setUIntArray(uniformName: string, array: Uint32Array): void;
- /**
- * Sets an unsigned int array 2 on a uniform variable. (Array is specified as single array eg. [1,2,3,4] will result in [[1,2],[3,4]] in the shader)
- * @param uniformName Name of the variable.
- * @param array array to be set.
- */
- setUIntArray2(uniformName: string, array: Uint32Array): void;
- /**
- * Sets an unsigned int array 3 on a uniform variable. (Array is specified as single array eg. [1,2,3,4,5,6] will result in [[1,2,3],[4,5,6]] in the shader)
- * @param uniformName Name of the variable.
- * @param array array to be set.
- */
- setUIntArray3(uniformName: string, array: Uint32Array): void;
- /**
- * Sets an unsigned int array 4 on a uniform variable. (Array is specified as single array eg. [1,2,3,4,5,6,7,8] will result in [[1,2,3,4],[5,6,7,8]] in the shader)
- * @param uniformName Name of the variable.
- * @param array array to be set.
- */
- setUIntArray4(uniformName: string, array: Uint32Array): void;
- /**
- * Sets an array on a uniform variable.
- * @param uniformName Name of the variable.
- * @param array array to be set.
- */
- setArray(uniformName: string, array: number[] | Float32Array): void;
- /**
- * Sets an array 2 on a uniform variable. (Array is specified as single array eg. [1,2,3,4] will result in [[1,2],[3,4]] in the shader)
- * @param uniformName Name of the variable.
- * @param array array to be set.
- */
- setArray2(uniformName: string, array: number[] | Float32Array): void;
- /**
- * Sets an array 3 on a uniform variable. (Array is specified as single array eg. [1,2,3,4,5,6] will result in [[1,2,3],[4,5,6]] in the shader)
- * @param uniformName Name of the variable.
- * @param array array to be set.
- */
- setArray3(uniformName: string, array: number[] | Float32Array): void;
- /**
- * Sets an array 4 on a uniform variable. (Array is specified as single array eg. [1,2,3,4,5,6,7,8] will result in [[1,2,3,4],[5,6,7,8]] in the shader)
- * @param uniformName Name of the variable.
- * @param array array to be set.
- */
- setArray4(uniformName: string, array: number[] | Float32Array): void;
- /**
- * Sets matrices on a uniform variable.
- * @param uniformName Name of the variable.
- * @param matrices matrices to be set.
- */
- setMatrices(uniformName: string, matrices: Float32Array): void;
- /**
- * Sets matrix on a uniform variable.
- * @param uniformName Name of the variable.
- * @param matrix matrix to be set.
- */
- setMatrix(uniformName: string, matrix: IMatrixLike): void;
- /**
- * Sets a 3x3 matrix on a uniform variable. (Specified as [1,2,3,4,5,6,7,8,9] will result in [1,2,3][4,5,6][7,8,9] matrix)
- * @param uniformName Name of the variable.
- * @param matrix matrix to be set.
- */
- setMatrix3x3(uniformName: string, matrix: Float32Array): void;
- /**
- * Sets a 2x2 matrix on a uniform variable. (Specified as [1,2,3,4] will result in [1,2][3,4] matrix)
- * @param uniformName Name of the variable.
- * @param matrix matrix to be set.
- */
- setMatrix2x2(uniformName: string, matrix: Float32Array): void;
- /**
- * Sets a float on a uniform variable.
- * @param uniformName Name of the variable.
- * @param value value to be set.
- */
- setFloat(uniformName: string, value: number): void;
- /**
- * Sets a Vector2 on a uniform variable.
- * @param uniformName Name of the variable.
- * @param vector2 vector2 to be set.
- */
- setVector2(uniformName: string, vector2: IVector2Like): void;
- /**
- * Sets a float2 on a uniform variable.
- * @param uniformName Name of the variable.
- * @param x First float in float2.
- * @param y Second float in float2.
- */
- setFloat2(uniformName: string, x: number, y: number): void;
- /**
- * Sets a Vector3 on a uniform variable.
- * @param uniformName Name of the variable.
- * @param vector3 Value to be set.
- */
- setVector3(uniformName: string, vector3: IVector3Like): void;
- /**
- * Sets a float3 on a uniform variable.
- * @param uniformName Name of the variable.
- * @param x First float in float3.
- * @param y Second float in float3.
- * @param z Third float in float3.
- */
- setFloat3(uniformName: string, x: number, y: number, z: number): void;
- /**
- * Sets a Vector4 on a uniform variable.
- * @param uniformName Name of the variable.
- * @param vector4 Value to be set.
- */
- setVector4(uniformName: string, vector4: IVector4Like): void;
- /**
- * Sets a Quaternion on a uniform variable.
- * @param uniformName Name of the variable.
- * @param quaternion Value to be set.
- */
- setQuaternion(uniformName: string, quaternion: IQuaternionLike): void;
- /**
- * Sets a float4 on a uniform variable.
- * @param uniformName Name of the variable.
- * @param x First float in float4.
- * @param y Second float in float4.
- * @param z Third float in float4.
- * @param w Fourth float in float4.
- */
- setFloat4(uniformName: string, x: number, y: number, z: number, w: number): void;
- /**
- * Sets a Color3 on a uniform variable.
- * @param uniformName Name of the variable.
- * @param color3 Value to be set.
- */
- setColor3(uniformName: string, color3: IColor3Like): void;
- /**
- * Sets a Color4 on a uniform variable.
- * @param uniformName Name of the variable.
- * @param color3 Value to be set.
- * @param alpha Alpha value to be set.
- */
- setColor4(uniformName: string, color3: IColor3Like, alpha: number): void;
- /**
- * Sets a Color4 on a uniform variable
- * @param uniformName defines the name of the variable
- * @param color4 defines the value to be set
- */
- setDirectColor4(uniformName: string, color4: IColor4Like): void;
- }
|