From 3844c35e0de56f15e231979ac578bc562eee5459 Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Wed, 20 Aug 2025 17:36:50 +0200 Subject: [PATCH] docs: stub pipe_format & pipe_video_chroma_format Fixes: fabd0d82dbfb8f723187 ("util/format: Auto-generate the enum pipe_format definition") Fixes: 5e01ec4bd0ac07685d57 ("util/format: Auto-generate a bunch of YUV helpers") Part-of: --- docs/header-stubs/util/format/u_format_gen.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/header-stubs/util/format/u_format_gen.h b/docs/header-stubs/util/format/u_format_gen.h index e69de29bb2d..75a75aa76e1 100644 --- a/docs/header-stubs/util/format/u_format_gen.h +++ b/docs/header-stubs/util/format/u_format_gen.h @@ -0,0 +1,7 @@ +enum pipe_format { + PIPE_FORMAT_NONE, +}; + +enum pipe_video_chroma_format { + PIPE_VIDEO_CHROMA_FORMAT_NONE, +};