-
-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
zhangjipeng
committed
Dec 24, 2024
1 parent
dd7dbff
commit 19d9549
Showing
13 changed files
with
30 additions
and
30 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
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 |
---|---|---|
@@ -1,12 +1,12 @@ | ||
/** | ||
* \file picasso_image.h | ||
* \file psx_image.h | ||
* \author Zhang Ji Peng <[email protected]> | ||
* \date 2012/1/31 | ||
* | ||
* This file includes all interfaces of picasso extended image decoders. | ||
\verbatim | ||
Copyright (C) 2008 ~ 2018 Zhang Ji Peng | ||
Copyright (C) 2008 ~ 2024 Zhang Ji Peng | ||
All rights reserved. | ||
|
@@ -15,8 +15,8 @@ | |
\endverbatim | ||
*/ | ||
|
||
#ifndef _PICASSO_EXT_IMAGE_DECODERS_H_ | ||
#define _PICASSO_EXT_IMAGE_DECODERS_H_ | ||
#ifndef _PSX_IMAGE_DECODERS_H_ | ||
#define _PSX_IMAGE_DECODERS_H_ | ||
|
||
#include "picasso.h" | ||
|
||
|
@@ -270,4 +270,4 @@ PEXPORT int PICAPI psx_image_destroy(psx_image* image); | |
} | ||
#endif | ||
|
||
#endif /*_PICASSO_EXT_IMAGE_DECODERS_H_*/ | ||
#endif /*_PSX_IMAGE_DECODERS_H_*/ |
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 |
---|---|---|
@@ -1,12 +1,12 @@ | ||
/** | ||
* \file picasso_image_plugin.h | ||
* \file psx_image_plugin.h | ||
* \author Zhang Ji Peng <[email protected]> | ||
* \date 2012/1/31 | ||
* | ||
* This file includes all interfaces of image decoder backend. | ||
\verbatim | ||
Copyright (C) 2008 ~ 2018 Zhang Ji Peng | ||
Copyright (C) 2008 ~ 2024 Zhang Ji Peng | ||
All rights reserved. | ||
|
@@ -15,11 +15,11 @@ | |
\endverbatim | ||
*/ | ||
|
||
#ifndef _PICASSO_IMAGE_PLUGININ_INTERFACE_H_ | ||
#define _PICASSO_IMAGE_PLUGININ_INTERFACE_H_ | ||
#ifndef _PSX_IMAGE_PLUGININ_INTERFACE_H_ | ||
#define _PSX_IMAGE_PLUGININ_INTERFACE_H_ | ||
|
||
#include "picasso.h" | ||
#include "picasso_image.h" | ||
#include "psx_image.h" | ||
|
||
#ifdef __cplusplus | ||
extern "C" { | ||
|
@@ -183,4 +183,4 @@ PEXPORT const char* psx_image_module_get_string(int id); | |
} | ||
#endif | ||
|
||
#endif /*_PICASSO_IMAGE_PLUGININ_INTERFACE_H_*/ | ||
#endif /*_PSX_IMAGE_PLUGININ_INTERFACE_H_*/ |
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 |
---|---|---|
|
@@ -3,8 +3,9 @@ | |
# Copyright (C) 2024 Zhang Ji Peng | ||
# Contact: [email protected] | ||
|
||
file(GLOB_RECURSE PICASSO_HEADERS ${PROJECT_ROOT}/include/*.h) | ||
|
||
file(GLOB_RECURSE PICASSO_HEADERS ${PROJECT_ROOT}/include/picasso.h) | ||
install(FILES ${PICASSO_HEADERS} DESTINATION include/picasso) | ||
|
||
file(GLOB_RECURSE PSX_IMAGES_HEADERS ${PROJECT_ROOT}/include/images/*.h) | ||
install(FILES ${PSX_IMAGES_HEADERS} DESTINATION include/picasso/images) | ||
|
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