package com.mojang.blaze3d.systems; import java.util.Set; import net.fabricmc.api.EnvType; import net.fabricmc.api.Environment; @Environment(EnvType.CLIENT) public record DeviceInfo( String name, String vendorName, String driverInfo, boolean isZZeroToOne, String backendName, float timestampPeriod, DeviceLimits limits, DeviceFeatures features, Set underlyingExtensions, HintsAndWorkarounds hintsAndWorkarounds, DeviceType type ) { }