mirror of
https://github.com/dscyrescotti/Memola.git
synced 2026-05-12 10:50:03 +02:00
15 lines
221 B
Swift
15 lines
221 B
Swift
//
|
|
// MTLDevice++.swift
|
|
// Memola
|
|
//
|
|
// Created by Dscyre Scotti on 5/4/24.
|
|
//
|
|
|
|
import MetalKit
|
|
|
|
extension MTLDevice {
|
|
func maximumTextureDimension() -> Int {
|
|
supportsFamily(.apple3) ? 16384 : 8192
|
|
}
|
|
}
|