[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [60349] branches/soc-2013-viewport_fx/ source/blender/gpu/GPU_raster.h: some comments in GPU_raster. h feature flags

Jason Wilkins Jason.A.Wilkins at gmail.com
Tue Sep 24 02:20:22 CEST 2013


Revision: 60349
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=60349
Author:   jwilkins
Date:     2013-09-24 00:20:22 +0000 (Tue, 24 Sep 2013)
Log Message:
-----------
some comments in GPU_raster.h feature flags

Modified Paths:
--------------
    branches/soc-2013-viewport_fx/source/blender/gpu/GPU_raster.h

Modified: branches/soc-2013-viewport_fx/source/blender/gpu/GPU_raster.h
===================================================================
--- branches/soc-2013-viewport_fx/source/blender/gpu/GPU_raster.h	2013-09-23 23:31:42 UTC (rev 60348)
+++ branches/soc-2013-viewport_fx/source/blender/gpu/GPU_raster.h	2013-09-24 00:20:22 UTC (rev 60349)
@@ -51,9 +51,9 @@
 
 
 typedef enum GPURasterShaderOption {
-	GPU_RASTER_STIPPLE = (1<<0), /*  */
-	GPU_RASTER_AA      = (1<<1), /*  */
-	GPU_RASTER_POLYGON = (1<<2), /*  */
+	GPU_RASTER_STIPPLE = (1<<0), /* polygon or line stippling */
+	GPU_RASTER_AA      = (1<<1), /* anti-aliasing             */
+	GPU_RASTER_POLYGON = (1<<2), /* choose polygon or line    */
 
 	GPU_RASTER_OPTIONS_NUM         = 3,
 	GPU_RASTER_OPTION_COMBINATIONS = (1<<GPU_RASTER_OPTIONS_NUM)




More information about the Bf-blender-cvs mailing list