@@ -330,18 +330,28 @@ export const sumVector = (name: string, components: number) => {
330
330
* @param name - the name of variable.
331
331
* @param index - the index of variable element.
332
332
* @param length - the length of variable.
333
+ * @param type - the type of variable, optional.
333
334
*/
334
- export const getElementAt = ( name : string , index : number | string , length : number ) : string => {
335
- if ( name . startsWith ( 'uniforms.' ) && length > 4 ) {
336
- if ( typeof ( index ) === 'string' ) {
337
- return `${ name } [(${ index } ) / 4][(${ index } ) % 4]` ;
338
- } else {
339
- return `${ name } [${ Math . floor ( index / 4 ) } ][${ index % 4 } ]` ;
340
- }
341
- } else {
342
- return length > 1 ? `${ name } [${ index } ]` : name ;
343
- }
344
- } ;
335
+ export const getElementAt =
336
+ ( name : string , index : number | string , length : number , type ?: UniformDataElementType ) : string => {
337
+ if ( name . startsWith ( 'uniforms.' ) && length > 4 ) {
338
+ if ( typeof ( index ) === 'string' ) {
339
+ if ( type === 'f16' ) {
340
+ return `${ name } [(${ index } ) / 8][(${ index } ) % 8 / 4][(${ index } ) % 8 % 4]` ;
341
+ } else {
342
+ return `${ name } [(${ index } ) / 4][(${ index } ) % 4]` ;
343
+ }
344
+ } else {
345
+ if ( type === 'f16' ) {
346
+ return `${ name } [${ Math . floor ( index / 8 ) } ][${ Math . floor ( index % 8 / 4 ) } ][${ index % 8 % 4 } ]` ;
347
+ } else {
348
+ return `${ name } [${ Math . floor ( index / 4 ) } ][${ index % 4 } ]` ;
349
+ }
350
+ }
351
+ } else {
352
+ return length > 1 ? `${ name } [${ index } ]` : name ;
353
+ }
354
+ } ;
345
355
346
356
/**
347
357
* A helper function to get a IndicesHelper for a given input or output.
@@ -688,7 +698,7 @@ export const internalVariable =
688
698
( name : string , type : number , shapeOrRank : number | readonly number [ ] , components : 1 | 2 | 3 | 4 = 1 ) : IndicesHelper =>
689
699
createIndicesHelper ( name , type , shapeOrRank , 'internal' , components ) ;
690
700
691
- export type UniformDataElementType = 'u32' | 'f32' | 'i32' ;
701
+ export type UniformDataElementType = 'u32' | 'f16' | ' f32'| 'i32' ;
692
702
export type UniformsArrayType = Array < { name : string ; type : UniformDataElementType ; length ?: number } > ;
693
703
694
704
/**
@@ -861,7 +871,11 @@ class ShaderHelperImpl implements ShaderHelper {
861
871
const uniformSnippets : string [ ] = [ ] ;
862
872
for ( const { name, type, length} of this . uniforms ) {
863
873
if ( length && length > 4 ) {
864
- uniformSnippets . push ( `${ name } :array<vec4<${ type } >, ${ Math . ceil ( length / 4 ) } >` ) ;
874
+ if ( type === 'f16' ) {
875
+ uniformSnippets . push ( `@align(16) ${ name } :array<mat2x4<${ type } >, ${ Math . ceil ( length / 8 ) } >` ) ;
876
+ } else {
877
+ uniformSnippets . push ( `${ name } :array<vec4<${ type } >, ${ Math . ceil ( length / 4 ) } >` ) ;
878
+ }
865
879
} else {
866
880
const typeTemp = length == null || length === 1 ? type : `vec${ length } <${ type } >` ;
867
881
uniformSnippets . push ( `${ name } :${ typeTemp } ` ) ;
0 commit comments