How to get programmatically the maximum texture size (width and height)

前端 未结 2 1523
名媛妹妹
名媛妹妹 2021-01-06 16:59

How to get programmatically the maximum texture size (width and height) with metal? with openGL i can do: glGetIntegerv(GL_MAX_TEXTURE_SIZE, ...) but how to do

2条回答
  •  花落未央
    2021-01-06 17:51

    There is currently no API for retrieving the maximum texture dimensions of a Metal device. You should consult the Metal Feature Set Tables for this information and include it in your app instead.

    For A9 and newer GPUs running current versions of iOS/tvOS/iPadOS, the maximum size of a 2D texture is 16384×16384.

提交回复
热议问题