From 72369ba36f4eac97f31eb9f7c979115221be2b9e Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Mon, 20 Apr 2020 04:46:02 -0700 Subject: [PATCH] caps: add comments --- nx/include/switch/services/caps.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nx/include/switch/services/caps.h b/nx/include/switch/services/caps.h index d2f301f4..5b31ea57 100644 --- a/nx/include/switch/services/caps.h +++ b/nx/include/switch/services/caps.h @@ -65,9 +65,9 @@ typedef struct { /// ScreenShotDecoderFlag typedef enum { - CapsScreenShotDecoderFlag_None = 0, - CapsScreenShotDecoderFlag_EnableFancyUpsampling = BIT(0), - CapsScreenShotDecoderFlag_EnableBlockSmoothing = BIT(1), + CapsScreenShotDecoderFlag_None = 0, ///< No special processing. + CapsScreenShotDecoderFlag_EnableFancyUpsampling = BIT(0), ///< See libjpeg-turbo do_fancy_upsampling. + CapsScreenShotDecoderFlag_EnableBlockSmoothing = BIT(1), ///< See libjpeg-turbo do_block_smoothing. } CapsScreenShotDecoderFlag; /// ScreenShotDecodeOption