diff options
author | L Peter Deutsch <lpd@ghostscript.com> | 2000-04-11 19:10:13 +0000 |
---|---|---|
committer | L Peter Deutsch <lpd@ghostscript.com> | 2000-04-11 19:10:13 +0000 |
commit | 64252a3f7673c55011d15fc82034ef575b2a1f75 (patch) | |
tree | 6d2143f6b639e6a528b83153562feea7e677fba7 /gs/src/gdevpdfg.c | |
parent | e9f1607f1611ba59ad34377ba9319b6489642df0 (diff) |
Splits off creation and writing of color spaces, and writing color values,
into a separate file. Adds support for (Function-based) Separation and
DeviceN color spaces, general Pattern color spaces, and procedure-based
Indexed color spaces. Adds some code to support Pattern colors, but stubs
it out because it depends on changes in the image writing code that haven't
been integrated yet. In fact, most of the new code isn't called yet,
either.
git-svn-id: http://svn.ghostscript.com/ghostscript/trunk@304 a1074d23-0009-0410-80fe-cf8c14f379e6
Diffstat (limited to 'gs/src/gdevpdfg.c')
-rw-r--r-- | gs/src/gdevpdfg.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/gs/src/gdevpdfg.c b/gs/src/gdevpdfg.c index ecfefeb5b..717e35ce4 100644 --- a/gs/src/gdevpdfg.c +++ b/gs/src/gdevpdfg.c @@ -36,20 +36,6 @@ #include "gdevpdfo.h" #include "szlibx.h" -/**************** WILL MOVE TO gdevpdfc.c ****************/ - -/* Write a color value. */ -int -pdf_put_drawing_color(gx_device_pdf *pdev, const gx_drawing_color *pdc, - const psdf_set_color_commands_t *ppscc) -{ - if (gx_dc_is_pure(pdc)) - return psdf_set_color((gx_device_vector *) pdev, pdc, ppscc); - /* We never halftone, so this must be a Pattern. */ - /**************** NOT IMPLEMENTED YET ****************/ - return_error(gs_error_rangecheck); -} - /* ---------------- Miscellaneous ---------------- */ /* Reset the graphics state parameters to initial values. */ |