[Hdrflow-svn] SF.net SVN: hdrflow: [439] trunk/lib/extras/src/nuke/readers.cpp
Status: Pre-Alpha
Brought to you by:
glslang
From: <gl...@us...> - 2008-03-31 20:44:31
|
Revision: 439 http://hdrflow.svn.sourceforge.net/hdrflow/?rev=439&view=rev Author: glslang Date: 2008-03-31 13:44:29 -0700 (Mon, 31 Mar 2008) Log Message: ----------- More Nuke fileIO Modified Paths: -------------- trunk/lib/extras/src/nuke/readers.cpp Modified: trunk/lib/extras/src/nuke/readers.cpp =================================================================== --- trunk/lib/extras/src/nuke/readers.cpp 2008-03-31 20:35:39 UTC (rev 438) +++ trunk/lib/extras/src/nuke/readers.cpp 2008-03-31 20:44:29 UTC (rev 439) @@ -1,7 +1,7 @@ // readers - File IO nuke plugin. -// Copyright (C) 2007 Goncalo N. M. de Carvalho +// Copyright (C) 2008 Goncalo N. M. de Carvalho // Released under the GPL. // For more information, see http://www.hdrflow.com. @@ -11,3 +11,15 @@ #include <DDImage/DDString.h> #include <DDImage/Memory.h> +class hdrflow_reader : public DDImage::Reader +{ +public: + explicit hdrflow_reader( DDImage::Read* read, int fd ); + virtual ~hdrflow_reader( ); + + void engine( int x, int y, int r, DDImage::ChannelMask mask, DDImage::Row& row ); + void open( ); + + static const DDImage::Reader::Description desc; +}; + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |