handy to have this available for drivers to reuse
Reviewed-by: Erik Faye-Lund <erik.faye-lund@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6147>
util_draw_vbo_without_prim_restart(struct pipe_context *context,
const struct pipe_draw_info *info);
+static inline unsigned
+util_prim_restart_index_from_size(unsigned index_size)
+{
+ if (index_size == 1)
+ return 0xff;
+ if (index_size == 2)
+ return 0xffff;
+ if (index_size == 4)
+ return 0xffffffff;
+ unreachable("unknown index size passed");
+ return 0;
+}
#ifdef __cplusplus
}