summaryrefslogtreecommitdiff
path: root/gs/src/gsdfilt.h
diff options
context:
space:
mode:
authorRaph Levien <raph.levien@artifex.com>2001-04-01 00:30:41 +0000
committerRaph Levien <raph.levien@artifex.com>2001-04-01 00:30:41 +0000
commitb319ae257869cdbe27ff2e1a8a8466a70e96e359 (patch)
treee2a8c0868249154d8c607b34296e2e5edf66269a /gs/src/gsdfilt.h
parentec012d398683f707c4fa5d3e2dd2c84c4358a9b3 (diff)
downloadghostpdl-b319ae257869cdbe27ff2e1a8a8466a70e96e359.tar.gz
Applies PDF 1.4 rendering with all devices. Previously, only pnga device
contained PDF 1.4 rendering capabilities. Now, when the PDF 1.4 imaging model is detected in the source file, it installs the pdf 1.4 rendering device as a device filter. git-svn-id: http://svn.ghostscript.com/ghostscript/trunk@1345 a1074d23-0009-0410-80fe-cf8c14f379e6
Diffstat (limited to 'gs/src/gsdfilt.h')
-rw-r--r--gs/src/gsdfilt.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/gs/src/gsdfilt.h b/gs/src/gsdfilt.h
index 322ee2fb2..a4f526d5f 100644
--- a/gs/src/gsdfilt.h
+++ b/gs/src/gsdfilt.h
@@ -43,7 +43,8 @@ typedef struct gs_device_filter_s gs_device_filter_t;
struct gs_device_filter_s {
int (*push)(gs_device_filter_t *self, gs_memory_t *mem,
gx_device **pdev, gx_device *target);
- int (*pop)(gs_device_filter_t *self, gs_memory_t *mem, gx_device *dev);
+ int (*pop)(gs_device_filter_t *self, gs_memory_t *mem, gs_state *pgs,
+ gx_device *dev);
};
extern_st(st_gs_device_filter);