Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2020-11-12 07:17:07 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-11-12 07:18:08 +0300
commit934c2c8ac58c10a2b729435c40c96443371bc21b (patch)
tree496058407a5fa0f7a8e1098ced6542c6ee41e693 /source/blender/imbuf/intern
parent977b6ca3058f752ba42f354ec746237eb1ee7d3f (diff)
Cleanup: clang-tidy, remove invalid comments
Diffstat (limited to 'source/blender/imbuf/intern')
-rw-r--r--source/blender/imbuf/intern/dds/dds_api.cpp1
-rw-r--r--source/blender/imbuf/intern/dds/dds_api.h1
2 files changed, 0 insertions, 2 deletions
diff --git a/source/blender/imbuf/intern/dds/dds_api.cpp b/source/blender/imbuf/intern/dds/dds_api.cpp
index 5687824f9fd..804d8130b4c 100644
--- a/source/blender/imbuf/intern/dds/dds_api.cpp
+++ b/source/blender/imbuf/intern/dds/dds_api.cpp
@@ -72,7 +72,6 @@ bool imb_save_dds(struct ImBuf *ibuf, const char *name, int /*flags*/)
return true;
}
-/* note: use at most first 32 bytes */
bool imb_is_a_dds(const unsigned char *mem, const size_t size)
{
if (size < 8) {
diff --git a/source/blender/imbuf/intern/dds/dds_api.h b/source/blender/imbuf/intern/dds/dds_api.h
index 9020529f210..931c4f267f9 100644
--- a/source/blender/imbuf/intern/dds/dds_api.h
+++ b/source/blender/imbuf/intern/dds/dds_api.h
@@ -26,7 +26,6 @@
extern "C" {
#endif
-/* use only first 32 bytes of mem */
bool imb_is_a_dds(const unsigned char *mem, const size_t size);
bool imb_save_dds(struct ImBuf *ibuf, const char *name, int flags);
struct ImBuf *imb_load_dds(const unsigned char *mem,