Browse Source

Missing bracket

darrylryan 8 years ago
parent
commit
a270377166
1 changed files with 57 additions and 57 deletions
  1. 57 57
      Source/AtomicWebView/WebTexture2D.cpp

+ 57 - 57
Source/AtomicWebView/WebTexture2D.cpp

@@ -270,65 +270,65 @@ public:
 
     }
 
-    void OnPaint(CefRefPtr<CefBrowser> browser, PaintElementType type, const RectList &dirtyRects,
-                 const void *buffer, int width, int height) OVERRIDE
-    {
-
-        if (type == PET_VIEW)
-        {
-            if (dirtyRects.size() == 1 &&
-                    dirtyRects[0] == CefRect(0, 0, webTexture2D_->GetWidth(), webTexture2D_->GetHeight()))
-            {
-                D3DBlit(IntRect(0, 0, width, height), (unsigned char*) buffer, width * 4, true);
-                return;
-            }
-
-            // Update just the dirty rectangles
-            CefRenderHandler::RectList::const_iterator i = dirtyRects.begin();
-
-            for (; i != dirtyRects.end(); ++i)
-            {
-                const CefRect& rect = *i;
-                unsigned char* src = (unsigned char*) buffer;
-                src += rect.y * (width * 4) + (rect.x * 4);
-                D3DBlit(IntRect(rect.x, rect.y, rect.x + rect.width, rect.y + rect.height), src, width * 4, false);
-            }
-
-        }
-        else if (type == PET_POPUP && popupRect_.width > 0 && popupRect_.height > 0)
-        {
-            int  x = popupRect_.x;
-            int  y = popupRect_.y;
-            int w = width;
-            int h = height;
-            int viewwidth = webTexture2D_->GetWidth();
-            int viewheight = webTexture2D_->GetHeight();
-
-            // Adjust the popup to fit inside the view.
-            if (x < 0)
-            {
-                x = 0;
-            }
-            if (y < 0)
-            {
-                y = 0;
-            }
-            if (x + w > viewwidth)
-            {
-                w -= x + w - viewwidth;
-            }
-            if (y + h > viewheight)
-            {
-                h -= y + h - viewheight;
-            }
-
-            unsigned char* src = (unsigned char*) buffer;
-            D3DBlit(IntRect(x, y, x + w, y + h), src, width * 4, false);
-
-        }
+	void OnPaint(CefRefPtr<CefBrowser> browser, PaintElementType type, const RectList &dirtyRects,
+		const void *buffer, int width, int height) OVERRIDE
+	{
+
+		if (type == PET_VIEW)
+		{
+			if (dirtyRects.size() == 1 &&
+				dirtyRects[0] == CefRect(0, 0, webTexture2D_->GetWidth(), webTexture2D_->GetHeight()))
+			{
+				D3DBlit(IntRect(0, 0, width, height), (unsigned char*)buffer, width * 4, true);
+				return;
+			}
+
+			// Update just the dirty rectangles
+			CefRenderHandler::RectList::const_iterator i = dirtyRects.begin();
+
+			for (; i != dirtyRects.end(); ++i)
+			{
+				const CefRect& rect = *i;
+				unsigned char* src = (unsigned char*)buffer;
+				src += rect.y * (width * 4) + (rect.x * 4);
+				D3DBlit(IntRect(rect.x, rect.y, rect.x + rect.width, rect.y + rect.height), src, width * 4, false);
+			}
+
+		}
+		else if (type == PET_POPUP && popupRect_.width > 0 && popupRect_.height > 0)
+		{
+			int  x = popupRect_.x;
+			int  y = popupRect_.y;
+			int w = width;
+			int h = height;
+			int viewwidth = webTexture2D_->GetWidth();
+			int viewheight = webTexture2D_->GetHeight();
+
+			// Adjust the popup to fit inside the view.
+			if (x < 0)
+			{
+				x = 0;
+			}
+			if (y < 0)
+			{
+				y = 0;
+			}
+			if (x + w > viewwidth)
+			{
+				w -= x + w - viewwidth;
+			}
+			if (y + h > viewheight)
+			{
+				h -= y + h - viewheight;
+			}
+
+			unsigned char* src = (unsigned char*)buffer;
+			D3DBlit(IntRect(x, y, x + w, y + h), src, width * 4, false);
+
+		}
 
 #endif
-
+	}
 #endif
 
 private: