add padding function to imgScalePadding()

This commit is contained in:
ton
2023-04-14 03:23:43 +00:00
parent c43d949309
commit 39b417dd94
15256 changed files with 525519 additions and 1048290 deletions

31
.CondaPkg/env/include/tkPort.h vendored Normal file
View File

@@ -0,0 +1,31 @@
/*
* tkPort.h --
*
* This header file handles porting issues that occur because of
* differences between systems. It reads in platform specific
* portability files.
*
* Copyright (c) 1995 Sun Microsystems, Inc.
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*/
#ifndef _TKPORT
#define _TKPORT
#if defined(_WIN32)
# include "tkWinPort.h"
#endif
#ifndef _TK
# include "tk.h"
#endif
#if !defined(_WIN32)
# if defined(MAC_OSX_TK)
# include "tkMacOSXPort.h"
# else
# include "tkUnixPort.h"
# endif
#endif
#endif /* _TKPORT */