summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorMarti Maria <marti.maria@littlecms.com>2022-10-15 19:39:11 +0200
committerMarti Maria <marti.maria@littlecms.com>2022-10-15 19:39:11 +0200
commit7c5a51f8472be479bf5674ef6bfabd70b8c88253 (patch)
treeb436d84c212a59f8d6259bf9f9fbc7437be5bc20 /plugins
parent430f9166ed15f991c3f92ba592e2cdf1d1429f64 (diff)
downloadlcms2-7c5a51f8472be479bf5674ef6bfabd70b8c88253.tar.gz
lcms2-2.14rc
Release candidate 1
Diffstat (limited to 'plugins')
-rw-r--r--plugins/threaded/Projects/VC2022/lcms2_threaded_plugin_testbed.vcxproj3
-rw-r--r--plugins/threaded/Projects/VC2022/lcms2_threaded_plugin_testbed.vcxproj.filters5
-rw-r--r--plugins/threaded/doc/LittleCMS threaded extensions 1.0.pdfbin0 -> 190980 bytes
-rw-r--r--plugins/threaded/include/lcms2_threaded.h6
4 files changed, 11 insertions, 3 deletions
diff --git a/plugins/threaded/Projects/VC2022/lcms2_threaded_plugin_testbed.vcxproj b/plugins/threaded/Projects/VC2022/lcms2_threaded_plugin_testbed.vcxproj
index eb8dd68..005a452 100644
--- a/plugins/threaded/Projects/VC2022/lcms2_threaded_plugin_testbed.vcxproj
+++ b/plugins/threaded/Projects/VC2022/lcms2_threaded_plugin_testbed.vcxproj
@@ -232,6 +232,9 @@
<ItemGroup>
<ClCompile Include="..\..\testbed\threaded_testbed.c" />
</ItemGroup>
+ <ItemGroup>
+ <ClInclude Include="..\..\include\lcms2_threaded.h" />
+ </ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
diff --git a/plugins/threaded/Projects/VC2022/lcms2_threaded_plugin_testbed.vcxproj.filters b/plugins/threaded/Projects/VC2022/lcms2_threaded_plugin_testbed.vcxproj.filters
index 0cba047..0660190 100644
--- a/plugins/threaded/Projects/VC2022/lcms2_threaded_plugin_testbed.vcxproj.filters
+++ b/plugins/threaded/Projects/VC2022/lcms2_threaded_plugin_testbed.vcxproj.filters
@@ -19,4 +19,9 @@
<Filter>Source Files</Filter>
</ClCompile>
</ItemGroup>
+ <ItemGroup>
+ <ClInclude Include="..\..\include\lcms2_threaded.h">
+ <Filter>Header Files</Filter>
+ </ClInclude>
+ </ItemGroup>
</Project> \ No newline at end of file
diff --git a/plugins/threaded/doc/LittleCMS threaded extensions 1.0.pdf b/plugins/threaded/doc/LittleCMS threaded extensions 1.0.pdf
new file mode 100644
index 0000000..007c5fd
--- /dev/null
+++ b/plugins/threaded/doc/LittleCMS threaded extensions 1.0.pdf
Binary files differ
diff --git a/plugins/threaded/include/lcms2_threaded.h b/plugins/threaded/include/lcms2_threaded.h
index 6bd38be..db2cdba 100644
--- a/plugins/threaded/include/lcms2_threaded.h
+++ b/plugins/threaded/include/lcms2_threaded.h
@@ -39,10 +39,10 @@ extern "C" {
// Configuration toggles
// The one and only plug-in entry point. To install this plugin in your code you need to place this in
-// some initialization place. IOf you want to combine this plug-in with fastfloat, make sure to call
-// the threaded entry point comes last in chain.
+// some initialization place. If you want to combine this plug-in with fastfloat, make sure to call
+// the threaded entry point comes last in chain. flags is a reserved field for future use
//
-// cmsPlugin(cmsThreadedExtensions(CMS_THREADED_GUESS_MAX_THREADS));
+// cmsPlugin(cmsThreadedExtensions(CMS_THREADED_GUESS_MAX_THREADS, 0));
//
#define CMS_THREADED_GUESS_MAX_THREADS -1