Mako 8.2.0 API
MakoCore SDK API Documentation
Loading...
Searching...
No Matches
renderspec.h File Reference

Render specification classes and post-processes. More...

#include <memory>
#include <jawsmako/jawsmako.h>
#include <jawsmako/types.h>
#include <edl/icolormanager.h>
Include dependency graph for renderspec.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  JawsMako::CSpotColorAlias
 A simple class which specifies aliasing for a spot colorant in a render. An alias can map a spot component (spotName) to any other component (remappedColorant) in a render, including a process component. For example, it is possible to alias "GlossBlack" to "Black" such that GlossBlack is treated as if it were the Black process colorant. Multiple aliases may map to the same final component. More...
class  JawsMako::CRenderSpec
 A base class that describes base rendering properties common to all rendering operations. Not intended to be used directly. Instead, use instances of one of the subclasses that matches the rendering need. More...
class  JawsMako::CImageRenderSpec
 A concrete class where a single image is generated as output. Here, a maximum of 32 color components is allowed, not including any generated alpha channel. More...
class  JawsMako::CImagesRenderSpec
 A concrete class where a vector of images is populated, one image per component. More...
class  JawsMako::CFrameBufferRenderSpec
 A concrete class where the result is rendered into a simple frame buffer, where each component in the result is interleaved. For more complex layout requirements, use CFrameBuffersRenderSpec which can handle arbitrary requirements. The frame buffer must have enough channels allocated for the final rendered result, including any post-processing. More...
class  JawsMako::CFrameBuffersRenderSpec
 A concrete class where the result is rendered into one or more frame buffers, where the layout is arbitrary. More...
class  JawsMako::IPostProcessSpec
 A class that describes a post process operation to be (logically) performed after an initial render to process components is complete. A series of these can be used to perform operations such as tone curve mapping, conversion to a preview or simulation color space, merging/overprint simulation of spots, or channel masking. For Apex, custom post processes are now supported to enable the use of custom shaders to run on the GPU. See apexcustompostprocess.h. More...
class  JawsMako::CColorConversionPostProcessSpec
 This class describes a post-processing step whereby the previous result is color converted to a new color space using a given rendering intent and black point compensation setting. More...
class  JawsMako::CColorConversionPostProcessSpec::CLogicalStep
class  JawsMako::CToneCurvesPostProcessSpec
 This class describes a post-processing step whereby one or more tone curves (aka calibration curves) are applied to the current rendered result. More...
class  JawsMako::CSpotMergePostProcessSpec
 This class describes a post-processing step whereby one or more spot colorants folded into the process components post-render. More...
class  JawsMako::CInkLimitPostProcessSpec
 This class describes a post-processing step whereby ink limiting via scaling is performed. More...
class  JawsMako::CHalftonePostProcessSpec
 This class describes a post-processing step whereby halftoning is performed. More...
class  JawsMako::CHalftonePostProcessSpec::CSeparatedColorSpotHalftone
 Description of spot halftones, used for color halftoned rendering. Analogous to a PostScript Type 2 Halftone; please refer to section 7.4.6 of the PostScript language reference manual. This class works as CColorSpotHalftone, but allows the user to specify a default angle to be used for spot components. More...

Namespaces

namespace  JawsMako

Macros

#define renderSpecToCImageRenderSpec(rs)
#define renderSpecToCImagesRenderSpec(rs)
#define renderSpecToCFrameBufferRenderSpec(rs)
#define renderSpecToCFrameBuffersRenderSpec(rs)
#define obj2CColorConversionPostProcessSpec(obj)
#define obj2CToneCurvesPostProcessSpec(obj)
#define obj2CSpotMergePostProcessSpec(obj)
#define obj2CInkLimitPostProcessSpec(obj)
#define obj2CHalftonePostProcessSpec(obj)

Typedefs

typedef IJawsRenderer::CFrameBufferInfo JawsMako::CFrameBufferInfo
typedef IJawsRenderer::IHalftone JawsMako::IHalftone
typedef IJawsRenderer::CSpotHalftone JawsMako::CSpotHalftone
typedef IJawsRenderer::CColorSpotHalftone JawsMako::CColorSpotHalftone
typedef CEDLVector< CFrameBufferInfoJawsMako::CFrameBufferInfoVect
typedef CEDLVector< IPostProcessSpecPtr > JawsMako::CRenderPostProcessVect
typedef CEDLVector< CSpotColorAliasJawsMako::CSpotColorAliasVect
 An alias for a vector of CSpotColorAlias.

Functions

 JawsMako::DECL_SMART_PTR (IPostProcessSpec)
 JawsMako::DECL_SMART_PTR (CColorConversionPostProcessSpec)
 JawsMako::DECL_SMART_PTR (CToneCurvesPostProcessSpec)
 JawsMako::DECL_SMART_PTR (CSpotMergePostProcessSpec)
 JawsMako::DECL_SMART_PTR (CInkLimitPostProcessSpec)
 JawsMako::DECL_SMART_PTR (CHalftonePostProcessSpec)

Detailed Description

Render specification classes and post-processes.

Macro Definition Documentation

◆ obj2CColorConversionPostProcessSpec

#define obj2CColorConversionPostProcessSpec ( obj)
Value:
CColorConversionPostProcessSpecPtr(dynamic_cast<CColorConversionPostProcessSpec *>((IRCObject *) (obj)), true)
Base class Interface for all Reference Counted objects.
Definition ircobject.h:35

◆ obj2CHalftonePostProcessSpec

#define obj2CHalftonePostProcessSpec ( obj)
Value:
CHalftonePostProcessSpecPtr(dynamic_cast<CHalftonePostProcessSpec *>((IRCObject *) (obj)), true)

◆ obj2CInkLimitPostProcessSpec

#define obj2CInkLimitPostProcessSpec ( obj)
Value:
CInkLimitPostProcessSpecPtr(dynamic_cast<CInkLimitPostProcessSpec *>((IRCObject *) (obj)), true)

◆ obj2CSpotMergePostProcessSpec

#define obj2CSpotMergePostProcessSpec ( obj)
Value:
CSpotMergePostProcessSpecPtr(dynamic_cast<CSpotMergePostProcessSpec *>((IRCObject *) (obj)), true)

◆ obj2CToneCurvesPostProcessSpec

#define obj2CToneCurvesPostProcessSpec ( obj)
Value:
CToneCurvesPostProcessSpecPtr(dynamic_cast<CToneCurvesPostProcessSpec *>((IRCObject *) (obj)), true)

◆ renderSpecToCFrameBufferRenderSpec

#define renderSpecToCFrameBufferRenderSpec ( rs)
Value:
(dynamic_cast<CFrameBufferRenderSpec *>(rs))

◆ renderSpecToCFrameBuffersRenderSpec

#define renderSpecToCFrameBuffersRenderSpec ( rs)
Value:
(dynamic_cast<CFrameBuffersRenderSpec *>(rs))

◆ renderSpecToCImageRenderSpec

#define renderSpecToCImageRenderSpec ( rs)
Value:
(dynamic_cast<CImageRenderSpec *>(rs))

◆ renderSpecToCImagesRenderSpec

#define renderSpecToCImagesRenderSpec ( rs)
Value:
(dynamic_cast<CImagesRenderSpec *>(rs))