}
v = gvjobs_output_langname(gvc, val);
if (!v) {
- fprintf(stderr, "Renderer type: \"%s\" not recognized. Use one of:%s\n",
- val, gvplugin_list(gvc, API_render, val));
+ fprintf(stderr, "Format: \"%s\" not recognized. Use one of:%s\n",
+ val, gvplugin_list(gvc, API_device, val));
exit(1);
}
break;
LIBS = $(LIBLTDL) $(SOCKET_LIBS)
pkginclude_HEADERS = gvc.h gvcext.h gvplugin.h gvcjob.h \
- gvcommon.h gvplugin_render.h gvplugin_layout.h gvplugin_formatter.h \
+ gvcommon.h gvplugin_render.h gvplugin_layout.h \
gvplugin_textlayout.h gvplugin_device.h gvplugin_loadimage.h \
dot_builtins.c demand_loading.c no_demand_loading.c
noinst_HEADERS = gvcint.h gvcproc.h
rc = gvjobs_output_langname(gvc, format);
job = gvc->job;
if (rc == NO_SUPPORT) {
- agerr (AGERR, "Renderer type: \"%s\" not recognized. Use one of:%s\n",
- format, gvplugin_list(gvc, API_render, format));
+ agerr (AGERR, "Format: \"%s\" not recognized. Use one of:%s\n",
+ format, gvplugin_list(gvc, API_device, format));
return -1;
}
rc = gvjobs_output_langname(gvc, format);
job = gvc->job;
if (rc == NO_SUPPORT) {
- agerr(AGERR, "Renderer type: \"%s\" not recognized. Use one of:%s\n", format, gvplugin_list(gvc, API_render, format));
+ agerr(AGERR, "Format: \"%s\" not recognized. Use one of:%s\n", format, gvplugin_list(gvc, API_device, format));
return -1;
}
char **knowncolors;
int sz_knowncolors;
color_type_t color_type;
- char *device, *imageloader, *formatter;
+ char *imageloader;
} gvrender_features_t;
typedef struct {
codegen_info_t *p;
for (p = cg; p->name; ++p)
- gvplugin_install(gvc, API_render, p->name, 0,
+ gvplugin_install(gvc, API_device, p->name, 0,
"cg", NULL, (gvplugin_installed_t *) p);
#endif
+++ /dev/null
-/* $Id$ $Revision$ */
-/* vim:set shiftwidth=4 ts=8: */
-
-/**********************************************************
-* This software is part of the graphviz package *
-* http://www.graphviz.org/ *
-* *
-* Copyright (c) 1994-2004 AT&T Corp. *
-* and is licensed under the *
-* Common Public License, Version 1.0 *
-* by AT&T Corp. *
-* *
-* Information and Software Systems Research *
-* AT&T Research, Florham Park NJ *
-**********************************************************/
-
-#ifndef GVFORMATTER_PLUGIN_H
-#define GVFORMATTER_PLUGIN_H
-
-#include "types.h"
-#include "gvplugin.h"
-#include "gvcjob.h"
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
- struct gvformatter_engine_s {
- void (*format) (GVJ_t * job, unsigned int width, unsigned int height, unsigned char *data);
- };
-
-#ifdef __cplusplus
-}
-#endif
-#endif /* GVFORMATTER_PLUGIN_H */