Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion backends/vulkan/vulkan_preprocess.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def preprocess( # noqa: C901
default_texture_limits = copy.deepcopy(utils.DEFAULT_TEXTURE_LIMITS)
# 2048 is the typical limit value for 3D textures, but mobile GPUs often support
# 16384. Since the Vulkan delegate primarily targets mobile GPUs at the moment,
# 16394 is the default texture limit used. This option is provided as a
# 16384 is the default texture limit used. This option is provided as a
# convenient way to switch to using a limit of 2048 for image textures which
# will be compatible with most GPUs.
if compile_options.get("small_texture_limits", False):
Expand Down
Loading