[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [11272] branches/soc-2007-mosani/source/ blender/blenpluginapi/PLU_register.h: Fixed a mistake and cleaned up my changes to PLU_register.h

Aaron Moore two.a.ron at gmail.com
Sat Jul 14 08:47:10 CEST 2007


Revision: 11272
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=11272
Author:   mosani
Date:     2007-07-14 08:47:10 +0200 (Sat, 14 Jul 2007)

Log Message:
-----------
Fixed a mistake and cleaned up my changes to PLU_register.h
(small commit)

Modified Paths:
--------------
    branches/soc-2007-mosani/source/blender/blenpluginapi/PLU_register.h

Modified: branches/soc-2007-mosani/source/blender/blenpluginapi/PLU_register.h
===================================================================
--- branches/soc-2007-mosani/source/blender/blenpluginapi/PLU_register.h	2007-07-14 02:55:36 UTC (rev 11271)
+++ branches/soc-2007-mosani/source/blender/blenpluginapi/PLU_register.h	2007-07-14 06:47:10 UTC (rev 11272)
@@ -93,7 +93,7 @@
 	) {
 	
 	plugin_descriptor_t * rv = plugin_register_private(
-		B_PLUGIN_VERSION, PLUGIN_TYPE_RENDER_OUTPUT,
+		B_PLUGIN_VERSION, PLUGIN_TYPE_MATERIAL,
 		capabilities, name, 
 		menu_entry,
 		author,	copyright, help, date, 
@@ -106,31 +106,7 @@
 }
 
 
-
-
 /* External Renderer Plugin Registration */
-/*
-typedef struct RendererRegistration{
-	
-	/ standard registration /
-	char* name;
-	char* menu_entry;
-	char* author;
-	char* copyright;
-	char* help;
-	char* date;
-	unsigned long long capabilities;
-	plugin_instance_t* (*init)(plugin_control_t * c);
-	plugin_instance_t* (*load)(plugin_control_t * c);
-	void (*free)(plugin_instance_t* This);
-	
-	/ renderer registration /
-	void (*setup)( RNDScene scene );
-	void (*render_frame)( RNDScene scene, RNDResult result );
-	void (*finish)();
-	void (*abort)();
-	
-}RendererRegistration; */
 
 static PLU_INLINE plugin_descriptor_t * plugin_register_render_output(
 	const char* name, 





More information about the Bf-blender-cvs mailing list