diff --git a/cmake/docs.cmake b/cmake/docs.cmake index 39e20ec701..09fc951c39 100644 --- a/cmake/docs.cmake +++ b/cmake/docs.cmake @@ -25,26 +25,47 @@ set( DOXYGEN_CLANG_ASSISTED_PARSING NO ) set( DOXYGEN_ALPHABETICAL_INDEX NO ) set( DOXYGEN_HTML_TIMESTAMP YES ) set( DOXYGEN_DISABLE_INDEX YES ) +set( DOXYGEN_DISABLE_INDEX NO ) set( DOXYGEN_GENERATE_TREEVIEW YES ) set( DOXYGEN_GENERATE_LATEX NO ) set( DOXYGEN_GENERATE_HTML YES ) set( DOXYGEN_GENERATE_MAN YES ) set( DOXYGEN_MAN_OUTPUT ../man ) -function( add_docs_cmake target ) - # Make `docs.cmake` show up in IDE/project +function( add_sources target sources ) + # Make ${sources} show up in IDE/project get_target_property( doc_sources ${target} SOURCES ) + if( NOT doc_sources ) + set( doc_sources "" ) # Clear doc_sources-NOTFOUND value. + endif() set_target_properties( ${target} PROPERTIES - SOURCES "${doc_sources};cmake/docs.cmake" + SOURCES "${doc_sources};${sources}" ) endfunction() +function( add_docs_cmake target ) + # Make `docs.cmake` show up in IDE/project + add_sources( ${target} "cmake/docs.cmake" ) +endfunction() + +function( add_docs_cmake_plus target sources ) + # Make `docs.cmake` plus ${sources} show up in IDE/project + add_sources( ${target} "cmake/docs.cmake;${sources}" ) +endfunction() + +# Note very well +# +# These projects and accompanying DOXYGEN_LAYOUT_FILES are carefully crafted +# to provide the illusion of a consistent GUI across all the projects. +# Likely this will be fragile in the face of Doxygen changes. + # ktx.doc function( CreateDocLibKTX ) - set( DOXYGEN_PROJECT_NAME "libktx - The KTX Library" ) + set( DOXYGEN_PROJECT_NAME "libktx Reference" ) set( DOXYGEN_ALIASES error=\"\\par Errors\\n\" ) + set( DOXYGEN_LAYOUT_FILE pkgdoc/libktxDoxyLayout.xml ) set( DOXYGEN_TYPEDEF_HIDES_STRUCT YES ) set( DOXYGEN_EXCLUDE lib/uthash.h ) set( DOXYGEN_EXCLUDE_PATTERNS ktxint.h ) @@ -76,7 +97,7 @@ function( CreateDocLibKTX ) ktx_uint32_t numLevels\; \\ ktx_uint32_t numLayers\; \\ ktx_uint32_t numFaces\; \\ - struct { \\ + struct { \\ ktxOrientationX x\; \\ ktxOrientationY y\; \\ ktxOrientationZ z\; \\ @@ -87,12 +108,11 @@ function( CreateDocLibKTX ) ktx_size_t dataSize\; \\ ktx_uint8_t* pData\;" ) - set( DOXYGEN_GENERATE_TAGFILE ${docdest}/libktx.tag ) + #set( DOXYGEN_GENERATE_TAGFILE ${docdest}/libktx.tag ) doxygen_add_docs( libktx.doc - lib/mainpage.md - LICENSE.md + lib/libktx_mainpage.md include lib/astc_encode.cpp lib/basis_encode.cpp @@ -110,29 +130,26 @@ function( CreateDocLibKTX ) lib/writer1.c lib/writer2.c ) - add_docs_cmake(libktx.doc) + add_docs_cmake_plus( libktx.doc pkgdoc/libktxDoxyLayout.xml ) endfunction() # ktxtools.doc -function( CreateDocKTXTools ) - set( DOXYGEN_PROJECT_NAME "Khronos Texture Tools" ) +function( CreateDocTools ) + set( DOXYGEN_PROJECT_NAME "KTX Tools Reference" ) set( DOXYGEN_FULL_PATH_NAMES NO ) set( DOXYGEN_ALIASES author=\"\\section AUTHOR\\n\" ) + set( DOXYGEN_LAYOUT_FILE pkgdoc/toolsDoxyLayout.xml ) set( DOXYGEN_SHOW_FILES NO ) set( DOXYGEN_FILE_PATTERNS *.cpp ) set( DOXYGEN_RECURSIVE YES ) set( DOXYGEN_EXAMPLE_PATH utils tools ) set( DOXYGEN_HTML_OUTPUT ktxtools ) set( DOXYGEN_MAN_EXTENSION .1 ) - set( DOXYGEN_GENERATE_TAGFILE ${docdest}/ktxtools.tag ) + #set( DOXYGEN_GENERATE_TAGFILE ${docdest}/ktxtools.tag ) + set( DOXYGEN_TAGFILES ${docdest}/ktxpkg.tag=.. ) doxygen_add_docs( - ktxtools.doc - tools/ktxinfo/ktxinfo.cpp - tools/ktx2check/ktx2check.cpp - tools/ktx2ktx2/ktx2ktx2.cpp - tools/ktxsc/ktxsc.cpp - tools/toktx/toktx.cc + tools.doc tools/ktx/ktx_main.cpp tools/ktx/command_create.cpp tools/ktx/command_encode.cpp @@ -141,10 +158,33 @@ function( CreateDocKTXTools ) tools/ktx/command_info.cpp tools/ktx/command_transcode.cpp tools/ktx/command_validate.cpp + tools/ktx2check/ktx2check.cpp + tools/ktx2ktx2/ktx2ktx2.cpp + tools/ktxinfo/ktxinfo.cpp + tools/ktxsc/ktxsc.cpp + tools/ktxtools_mainpage.md + tools/toktx/toktx.cc ) - add_docs_cmake(ktxtools.doc) + add_docs_cmake_plus( tools.doc pkgdoc/toolsDoxyLayout.xml ) endfunction() +# ktxjswrappers.doc +function( CreateDocJSWrappers ) + set( DOXYGEN_PROJECT_NAME "KTX Javascript Wrappers Reference" ) + set( DOXYGEN_FULL_PATH_NAMES NO ) + set( DOXYGEN_ALIASES author=\"\\section AUTHOR\\n\" ) + set( DOXYGEN_LAYOUT_FILE pkgdoc/jswrappersDoxyLayout.xml ) + set( DOXYGEN_SHOW_FILES NO ) + set( DOXYGEN_HTML_OUTPUT ktxjswrappers ) + #set( DOXYGEN_GENERATE_TAGFILE ${docdest}/ktxjswrappers.tag ) + set( DOXYGEN_TAGFILES ${docdest}/ktxpkg.tag=.. ) + + doxygen_add_docs( + jswrappers.doc + interface/js_binding + ) + add_docs_cmake_plus( jswrappers.doc pkgdoc/jswrappersDoxyLayout.xml ) +endfunction() # ktxpkg.doc function( CreateDocKTX ) @@ -154,29 +194,40 @@ function( CreateDocKTX ) set( DOXYGEN_EXCLUDE lib/uthash.h ) set( DOXYGEN_EXCLUDE_PATTERNS ktxint.h ) set( DOXYGEN_EXAMPLE_PATH lib ) + set( DOXYGEN_GENERATE_TAGFILE ${docdest}/ktxpkg.tag ) set( DOXYGEN_HTML_HEADER pkgdoc/header.html ) set( DOXYGEN_HTML_OUTPUT . ) set( DOXYGEN_MAN_LINKS YES ) - set( DOXYGEN_TAGFILES ${docdest}/libktx.tag=libktx ${docdest}/ktxtools.tag=ktxtools ) + #set( DOXYGEN_TAGFILES ${docdest}/libktx.tag=libktx ${docdest}/ktxtools.tag=ktxtools ) doxygen_add_docs( ktxpkg.doc pkgdoc/pages.md - TODO.md - interface/js_binding - ALL + LICENSE.md + #RELEASE_NOTES.md ) - add_docs_cmake(ktxpkg.doc) + add_docs_cmake_plus( ktxpkg.doc pkgdoc/packageDoxyLayout.xml ) endfunction() CreateDocLibKTX() -CreateDocKTXTools() +CreateDocTools() +CreateDocJSWrappers() CreateDocKTX() -add_dependencies( libktx.doc ktx_version ) -add_dependencies( ktxtools.doc libktx.doc ) -add_dependencies( ktxpkg.doc ktxtools.doc ) - +add_dependencies( libktx.doc ktxpkg.doc ktx_version ) +add_dependencies( jswrappers.doc ktxpkg.doc ) +add_dependencies( tools.doc ktxpkg.doc ) + +# I want to add a dependency on the "package" built-in target. +# Unfortunately CMake does not support adding dependencies to +# built-in targets. See https://gitlab.kitware.com/cmake/cmake/-/issues/8438. +# +# There also seems to be no way to add a dependency for the install commands +# below. Presumably "install(TARGETS ...)" adds a dependency on each target +# but the rest of that command is simply not appropriate for this case. +add_custom_target( all.doc ALL + DEPENDS tools.doc libktx.doc jswrappers.doc +) install( DIRECTORY ${docdest}/html diff --git a/include/KHR/khr_df.h b/include/KHR/khr_df.h index bbd0d14bd9..c0d03aa763 100644 --- a/include/KHR/khr_df.h +++ b/include/KHR/khr_df.h @@ -17,6 +17,11 @@ #ifndef _KHR_DATA_FORMAT_H_ #define _KHR_DATA_FORMAT_H_ +/** @file khr_df.h + + @brief Data Format enums and macros. +*/ + /* Accessors */ typedef enum _khr_word_e { KHR_DF_WORD_VENDORID = 0U, @@ -217,41 +222,42 @@ typedef enum _khr_df_versionnumber_e { KHR_DF_VERSIONNUMBER_MAX = 0xFFFFU } khr_df_versionnumber_e; -/* Model in which the color coordinate space is defined. +/** @~English + @brief Model in which the color coordinate space is defined. There is no requirement that a color format use all the channel types that are defined in the color model. */ typedef enum _khr_df_model_e { - /* No interpretation of color channels defined */ + /** No interpretation of color channels defined */ KHR_DF_MODEL_UNSPECIFIED = 0U, - /* Color primaries (red, green, blue) + alpha, depth and stencil */ + /** Color primaries (red, green, blue) + alpha, depth and stencil */ KHR_DF_MODEL_RGBSDA = 1U, - /* Color differences (Y', Cb, Cr) + alpha, depth and stencil */ + /** Color differences (Y', Cb, Cr) + alpha, depth and stencil */ KHR_DF_MODEL_YUVSDA = 2U, - /* Color differences (Y', I, Q) + alpha, depth and stencil */ + /** Color differences (Y', I, Q) + alpha, depth and stencil */ KHR_DF_MODEL_YIQSDA = 3U, - /* Perceptual color (CIE L*a*b*) + alpha, depth and stencil */ + /** Perceptual color (CIE L*a*b*) + alpha, depth and stencil */ KHR_DF_MODEL_LABSDA = 4U, - /* Subtractive colors (cyan, magenta, yellow, black) + alpha */ + /** Subtractive colors (cyan, magenta, yellow, black) + alpha */ KHR_DF_MODEL_CMYKA = 5U, - /* Non-color coordinate data (X, Y, Z, W) */ + /** Non-color coordinate data (X, Y, Z, W) */ KHR_DF_MODEL_XYZW = 6U, - /* Hue, saturation, value, hue angle on color circle, plus alpha */ + /** Hue, saturation, value, hue angle on color circle, plus alpha */ KHR_DF_MODEL_HSVA_ANG = 7U, - /* Hue, saturation, lightness, hue angle on color circle, plus alpha */ + /** Hue, saturation, lightness, hue angle on color circle, plus alpha */ KHR_DF_MODEL_HSLA_ANG = 8U, - /* Hue, saturation, value, hue on color hexagon, plus alpha */ + /** Hue, saturation, value, hue on color hexagon, plus alpha */ KHR_DF_MODEL_HSVA_HEX = 9U, - /* Hue, saturation, lightness, hue on color hexagon, plus alpha */ + /** Hue, saturation, lightness, hue on color hexagon, plus alpha */ KHR_DF_MODEL_HSLA_HEX = 10U, - /* Lightweight approximate color difference (luma, orange, green) */ + /** Lightweight approximate color difference (luma, orange, green) */ KHR_DF_MODEL_YCGCOA = 11U, - /* ITU BT.2020 constant luminance YcCbcCrc */ + /** ITU BT.2020 constant luminance YcCbcCrc */ KHR_DF_MODEL_YCCBCCRC = 12U, - /* ITU BT.2100 constant intensity ICtCp */ + /** ITU BT.2100 constant intensity ICtCp */ KHR_DF_MODEL_ICTCP = 13U, - /* CIE 1931 XYZ color coordinates (X, Y, Z) */ + /** CIE 1931 XYZ color coordinates (X, Y, Z) */ KHR_DF_MODEL_CIEXYZ = 14U, - /* CIE 1931 xyY color coordinates (X, Y, Y) */ + /** CIE 1931 xyY color coordinates (X, Y, Y) */ KHR_DF_MODEL_CIEXYY = 15U, /* Compressed formats start at 128. */ @@ -260,51 +266,54 @@ typedef enum _khr_df_model_e { channels are used to distinguish formats, these should be cosited. */ /* Direct3D (and S3) compressed formats */ /* Note that premultiplied status is recorded separately */ - /* DXT1 "channels" are RGB (0), Alpha (1) */ - /* DXT1/BC1 with one channel is opaque */ - /* DXT1/BC1 with a cosited alpha sample is transparent */ + /** DXT1 "channels" are RGB (0), Alpha (1) + DXT1/BC1 with one channel is opaque + DXT1/BC1 with a cosited alpha sample is transparent */ KHR_DF_MODEL_DXT1A = 128U, KHR_DF_MODEL_BC1A = 128U, - /* DXT2/DXT3/BC2, with explicit 4-bit alpha */ + /** DXT2/DXT3/BC2, with explicit 4-bit alpha */ KHR_DF_MODEL_DXT2 = 129U, KHR_DF_MODEL_DXT3 = 129U, KHR_DF_MODEL_BC2 = 129U, - /* DXT4/DXT5/BC3, with interpolated alpha */ + /** DXT4/DXT5/BC3, with interpolated alpha */ KHR_DF_MODEL_DXT4 = 130U, KHR_DF_MODEL_DXT5 = 130U, KHR_DF_MODEL_BC3 = 130U, - /* BC4 - single channel interpolated 8-bit data */ - /* (The UNORM/SNORM variation is recorded in the channel data) */ + /** BC4 - single channel interpolated 8-bit data + (The UNORM/SNORM variation is recorded in the channel data) */ KHR_DF_MODEL_BC4 = 131U, - /* BC5 - two channel interpolated 8-bit data */ - /* (The UNORM/SNORM variation is recorded in the channel data) */ + /** BC5 - two channel interpolated 8-bit data + (The UNORM/SNORM variation is recorded in the channel data) */ KHR_DF_MODEL_BC5 = 132U, - /* BC6H - DX11 format for 16-bit float channels */ + /** BC6H - DX11 format for 16-bit float channels */ KHR_DF_MODEL_BC6H = 133U, - /* BC7 - DX11 format */ + /** BC7 - DX11 format */ KHR_DF_MODEL_BC7 = 134U, /* Gap left for future desktop expansion */ /* Mobile compressed formats follow */ - /* A format of ETC1 indicates that the format shall be decodable - by an ETC1-compliant decoder and not rely on ETC2 features */ + /** A format of ETC1 indicates that the format shall be decodable + by an ETC1-compliant decoder and not rely on ETC2 features */ KHR_DF_MODEL_ETC1 = 160U, - /* A format of ETC2 is permitted to use ETC2 encodings on top of - the baseline ETC1 specification */ - /* The ETC2 format has channels "red", "green", "RGB" and "alpha", - which should be cosited samples */ - /* Punch-through alpha can be distinguished from full alpha by - the plane size in bytes required for the texel block */ + /** A format of ETC2 is permitted to use ETC2 encodings on top of + the baseline ETC1 specification. + The ETC2 format has channels "red", "green", "RGB" and "alpha", + which should be cosited samples. + Punch-through alpha can be distinguished from full alpha by + the plane size in bytes required for the texel block */ KHR_DF_MODEL_ETC2 = 161U, - /* Adaptive Scalable Texture Compression */ - /* ASTC HDR vs LDR is determined by the float flag in the channel */ - /* ASTC block size can be distinguished by texel block size */ + /** Adaptive Scalable Texture Compression */ + /** ASTC HDR vs LDR is determined by the float flag in the channel */ + /** ASTC block size can be distinguished by texel block size */ KHR_DF_MODEL_ASTC = 162U, - /* ETC1S is a simplified subset of ETC1 */ + /** ETC1S is a simplified subset of ETC1 */ KHR_DF_MODEL_ETC1S = 163U, - /* PowerVR Texture Compression */ + /** PowerVR Texture Compression v1 */ KHR_DF_MODEL_PVRTC = 164U, + /** PowerVR Texture Compression v2 */ KHR_DF_MODEL_PVRTC2 = 165U, + /** UASTC is a transcodable subset of ASTC + with additions to support the transcoding. */ KHR_DF_MODEL_UASTC = 166U, /* Proprietary formats (ATITC, etc.) should follow */ KHR_DF_MODEL_MAX = 0xFFU @@ -520,86 +529,88 @@ typedef enum _khr_df_model_channels_e { KHR_DF_CHANNEL_COMMON_A = 15U } khr_df_model_channels_e; -/* Definition of the primary colors in color coordinates. +/** @~English + @brief Definition of the primary colors in color coordinates. This is implicitly responsible for defining the conversion between RGB an YUV color spaces. LAB and related absolute color models should use KHR_DF_PRIMARIES_CIEXYZ. */ typedef enum _khr_df_primaries_e { - /* No color primaries defined */ + /** No color primaries defined */ KHR_DF_PRIMARIES_UNSPECIFIED = 0U, - /* Color primaries of ITU-R BT.709 and sRGB */ + /** Color primaries of ITU-R BT.709 and sRGB */ KHR_DF_PRIMARIES_BT709 = 1U, - /* Synonym for KHR_DF_PRIMARIES_BT709 */ + /** Synonym for KHR_DF_PRIMARIES_BT709 */ KHR_DF_PRIMARIES_SRGB = 1U, - /* Color primaries of ITU-R BT.601 (625-line EBU variant) */ + /** Color primaries of ITU-R BT.601 (625-line EBU variant) */ KHR_DF_PRIMARIES_BT601_EBU = 2U, - /* Color primaries of ITU-R BT.601 (525-line SMPTE C variant) */ + /** Color primaries of ITU-R BT.601 (525-line SMPTE C variant) */ KHR_DF_PRIMARIES_BT601_SMPTE = 3U, - /* Color primaries of ITU-R BT.2020 */ + /** Color primaries of ITU-R BT.2020 */ KHR_DF_PRIMARIES_BT2020 = 4U, - /* CIE theoretical color coordinate space */ + /** CIE theoretical color coordinate space */ KHR_DF_PRIMARIES_CIEXYZ = 5U, - /* Academy Color Encoding System primaries */ + /** Academy Color Encoding System primaries */ KHR_DF_PRIMARIES_ACES = 6U, - /* Color primaries of ACEScc */ + /** Color primaries of ACEScc */ KHR_DF_PRIMARIES_ACESCC = 7U, - /* Legacy NTSC 1953 primaries */ + /** Legacy NTSC 1953 primaries */ KHR_DF_PRIMARIES_NTSC1953 = 8U, - /* Legacy PAL 525-line primaries */ + /** Legacy PAL 525-line primaries */ KHR_DF_PRIMARIES_PAL525 = 9U, - /* Color primaries of Display P3 */ + /** Color primaries of Display P3 */ KHR_DF_PRIMARIES_DISPLAYP3 = 10U, - /* Color primaries of Adobe RGB (1998) */ + /** Color primaries of Adobe RGB (1998) */ KHR_DF_PRIMARIES_ADOBERGB = 11U, KHR_DF_PRIMARIES_MAX = 0xFFU } khr_df_primaries_e; -/* Definition of the optical to digital transfer function +/** @~English + @brief Definition of the optical to digital transfer function ("gamma correction"). Most transfer functions are not a pure power function and also include a linear element. LAB and related absolute color representations should use KHR_DF_TRANSFER_UNSPECIFIED. */ typedef enum _khr_df_transfer_e { - /* No transfer function defined */ + /** No transfer function defined */ KHR_DF_TRANSFER_UNSPECIFIED = 0U, - /* Linear transfer function (value proportional to intensity) */ + /** Linear transfer function (value proportional to intensity) */ KHR_DF_TRANSFER_LINEAR = 1U, - /* Perceptually-linear transfer function of sRGH (~2.4) */ + /** Perceptually-linear transfer function of sRGH (~2.4) */ KHR_DF_TRANSFER_SRGB = 2U, - /* Perceptually-linear transfer function of ITU BT.601, BT.709 and BT.2020 (~1/.45) */ + /** Perceptually-linear transfer function of ITU BT.601, BT.709 and BT.2020 (~1/.45) */ KHR_DF_TRANSFER_ITU = 3U, - /* SMTPE170M (digital NTSC) defines an alias for the ITU transfer function (~1/.45) */ + /** SMTPE170M (digital NTSC) defines an alias for the ITU transfer function (~1/.45) */ KHR_DF_TRANSFER_SMTPE170M = 3U, - /* Perceptually-linear gamma function of original NTSC (simple 2.2 gamma) */ + /** Perceptually-linear gamma function of original NTSC (simple 2.2 gamma) */ KHR_DF_TRANSFER_NTSC = 4U, - /* Sony S-log used by Sony video cameras */ + /** Sony S-log used by Sony video cameras */ KHR_DF_TRANSFER_SLOG = 5U, - /* Sony S-log 2 used by Sony video cameras */ + /** Sony S-log 2 used by Sony video cameras */ KHR_DF_TRANSFER_SLOG2 = 6U, - /* ITU BT.1886 EOTF */ + /** ITU BT.1886 EOTF */ KHR_DF_TRANSFER_BT1886 = 7U, - /* ITU BT.2100 HLG OETF */ + /** ITU BT.2100 HLG OETF */ KHR_DF_TRANSFER_HLG_OETF = 8U, - /* ITU BT.2100 HLG EOTF */ + /** ITU BT.2100 HLG EOTF */ KHR_DF_TRANSFER_HLG_EOTF = 9U, - /* ITU BT.2100 PQ EOTF */ + /** ITU BT.2100 PQ EOTF */ KHR_DF_TRANSFER_PQ_EOTF = 10U, - /* ITU BT.2100 PQ OETF */ + /** ITU BT.2100 PQ OETF */ KHR_DF_TRANSFER_PQ_OETF = 11U, - /* DCI P3 transfer function */ + /** DCI P3 transfer function */ KHR_DF_TRANSFER_DCIP3 = 12U, - /* Legacy PAL OETF */ + /** Legacy PAL OETF */ KHR_DF_TRANSFER_PAL_OETF = 13U, - /* Legacy PAL 625-line EOTF */ + /** Legacy PAL 625-line EOTF */ KHR_DF_TRANSFER_PAL625_EOTF = 14U, - /* Legacy ST240 transfer function */ + /** Legacy ST240 transfer function */ KHR_DF_TRANSFER_ST240 = 15U, - /* ACEScc transfer function */ + /** ACEScc transfer function */ KHR_DF_TRANSFER_ACESCC = 16U, - /* ACEScct transfer function */ + /** ACEScct transfer function */ KHR_DF_TRANSFER_ACESCCT = 17U, - /* Adobe RGB (1998) transfer function */ + /** Adobe RGB (1998) transfer function */ KHR_DF_TRANSFER_ADOBERGB = 18U, KHR_DF_TRANSFER_MAX = 0xFFU } khr_df_transfer_e; diff --git a/include/ktx.h b/include/ktx.h index 81377c80d0..7017a35fa5 100644 --- a/include/ktx.h +++ b/include/ktx.h @@ -1731,6 +1731,9 @@ KTX_API KTX_error_code KTX_APIENTRY ktxPrintKTX2InfoJSONForStream(ktxStream* str @~English @page libktx_history Revision History +No longer updated. Kept to preserve ancient history. For more recent history see the repo log at +https://github.com/KhronosGroup/KTX-Software. See also the Release Notes in the repo. + @section v8 Version 4.0 Added: @li Support for KTX Version 2. diff --git a/include/ktxvulkan.h b/include/ktxvulkan.h index e695ee6863..85df56e562 100644 --- a/include/ktxvulkan.h +++ b/include/ktxvulkan.h @@ -23,8 +23,6 @@ * alternative is duplicating unattractively large parts of it. * * @author Mark Callow, Edgewise Consulting - * - * $Date$ */ #include diff --git a/lib/mainpage.md b/lib/libktx_mainpage.md similarity index 94% rename from lib/mainpage.md rename to lib/libktx_mainpage.md index b9458c90bc..135104ad10 100644 --- a/lib/mainpage.md +++ b/lib/libktx_mainpage.md @@ -1,5 +1,4 @@ -Introduction {#mainpage} -============ +@mainpage