Fix enum values 28/4028/2
authorKondapally Kalyan <kalyan.kondapally@intel.com>
Sun, 16 Jun 2013 18:41:48 +0000 (21:41 +0300)
committerGerrit Code Review <gerrit@review.vlan103.tizen.org>
Tue, 18 Jun 2013 06:46:29 +0000 (23:46 -0700)
This patch changes the constants in PlatformSurface to
power of two. These would be used for bit wise operations.

Source/WebCore/platform/graphics/opengl/GLPlatformSurface.h

index 03742e8..b4f6a60 100644 (file)
@@ -46,10 +46,10 @@ public:
         Default = 0x00, // No Alpha channel. Only R,G,B values set.
         SupportAlpha = 0x01,
         SupportDepth = 0x02,
-        SupportStencil = 0x03,
-        SupportSamples = 0x04,
-        DoubleBuffered = 0x05,
-        Lockable = 0x06
+        SupportStencil = 0x04,
+        SupportSamples = 0x08,
+        DoubleBuffered = 0x10,
+        Lockable = 0x20
     };
 
     typedef unsigned SurfaceAttributes;