From f1bc496785c5712f7a6f3f9ef0eb1eae5c3011c9 Mon Sep 17 00:00:00 2001 From: Erik Faye-Lund Date: Tue, 18 Oct 2022 17:18:44 +0200 Subject: [PATCH] docs: consistently spell OK in allcaps Reviewed-by: David Heidelberg Part-of: --- docs/gallium/resources.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/gallium/resources.rst b/docs/gallium/resources.rst index e3e15f85f3c..727899c4956 100644 --- a/docs/gallium/resources.rst +++ b/docs/gallium/resources.rst @@ -46,7 +46,7 @@ Buffer resource: can be used as a vertex, index, constant buffer Buffers do not really have a format, it's just bytes, but they are required to have their type set to a R8 format (without a specific "just byte" format, R8_UINT would probably make the most sense, but for historic reasons R8_UNORM -is ok too). (This is just to make some shared buffer/texture code easier so +is OK too). (This is just to make some shared buffer/texture code easier so format size can be queried.) width0 serves as size, most other resource properties don't apply but must be set appropriately (depth0/height0/array_size must be 1, last_level 0).