![JAR search and dependency download from the Maven repository](/logo.png)
commonMain.com.littlekt.graphics.VertexAttributeExt.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core-jvm Show documentation
Show all versions of core-jvm Show documentation
Kotlin Multiplatform WebGPU 2D Game Framework
package com.littlekt.graphics
import com.littlekt.graphics.webgpu.VertexFormat
/**
* Calculates the stride of a list [VertexAttribute] by summing up the bytes of
* [VertexAttribute.format].
*
* @see VertexFormat.bytes
*/
fun List.calculateStride(): Int = sumOf { it.format.bytes }
/**
* Calculates the number of components in the list of [VertexAttribute] by summing up the components
* of [VertexAttribute.format].
*
* @see VertexFormat.components
*/
fun List.calculateComponents(): Int = sumOf { it.format.components }
© 2015 - 2025 Weber Informatics LLC | Privacy Policy