-
Notifications
You must be signed in to change notification settings - Fork 242
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Rework navigation among the multiple Doxygen projects for much easier use. - Rename new ktx tool man pages from `ktxtools_*` to `ktx_*` - Add `ktx` tool mainpage based on RELEASE_NOTES info. - Make minor formatting fix in `ktx` man page. - Update acknowledgements. - Remove outdated TODO.md. - Add script to do `$Date$` keyword smudging. Use it in CI and reference it from README.md to avoid repetition of list of files needing smudging. - Add `$Date$` keywords to some docs. - Remove `$Date$` and #ident keywords that are no longer needed or used. - Document the parts of `khr_df.h` relevant to the libktx API.
- Loading branch information
1 parent
2189c54
commit 69b1685
Showing
38 changed files
with
1,380 additions
and
7,501 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Copyright 2023 The Khronos Group Inc. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
# Smudge all files with proper $Date$ values. | ||
|
||
# Make sure we're in the repo root | ||
$path=(split-path $MyInvocation.MyCommand.Path -Parent) | ||
echo $path | ||
cd $path/.. | ||
|
||
$target_files = @( | ||
'pkgdoc/pages.md' | ||
'lib/libktx_mainpage.md' | ||
'tools/ktxtools_mainpage.md' | ||
'interface/js_binding/ktx_wrapper.cpp' | ||
) | ||
|
||
#foreach ($file in $target_files) { | ||
# rm $file | ||
# git checkout $file | ||
#} | ||
rm $target_files | ||
git checkout $target_files | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#! /usr/bin/env bash | ||
# Copyright 2023 The Khronos Group Inc. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
# Smudge all files with proper $Date$ values. | ||
|
||
# Exit if any command fails. | ||
set -e | ||
|
||
# Make sure we're in the repo root | ||
cd $(dirname $0)/.. | ||
|
||
|
||
target_files=(pkgdoc/pages.md | ||
lib/libktx_mainpage.md | ||
tools/ktxtools_mainpage.md | ||
interface/js_binding/ktx_wrapper.cpp | ||
) | ||
|
||
#for file in "${target_files[@]}"; do | ||
# rm $file | ||
# git checkout $file | ||
#done | ||
rm "${target_files[@]}" | ||
git checkout "${target_files[@]}" | ||
|
Oops, something went wrong.