summaryrefslogtreecommitdiff
path: root/Source/WebCore
diff options
context:
space:
mode:
authorJonathan Liu <net147@gmail.com>2012-12-12 23:55:01 +1100
committerSimon Hausmann <simon.hausmann@digia.com>2012-12-12 13:50:14 +0100
commitf5420ab057cbf9aa4452455bd815b69aee8ebddd (patch)
treec303bc5f036c694386207f14eae80046110441da /Source/WebCore
parent472835a143d1c2b78285c36a61117ebe24aab882 (diff)
downloadqtwebkit-f5420ab057cbf9aa4452455bd815b69aee8ebddd.tar.gz
Fix GC3Dintptr and GC3Dsizeiptr typedefs for Win64
https://bugs.webkit.org/show_bug.cgi?id=104426 Patch by Jonathan Liu <net147@gmail.com> on 2012-12-10 Reviewed by Simon Hausmann. The GC3Dintptr and GC3Dsizeiptr typedefs are incorrect for Win64 as LLP64 is used there. This would result in compile error due to narrowing conversion of 64-bit pointer to signed long int which is 32-bit. * platform/graphics/GraphicsTypes3D.h: Change-Id: I7da108634cebbfdb1c1b4aed485d10990c3ecaa9 git-svn-id: http://svn.webkit.org/repository/webkit/trunk@137129 268f45cc-cd09-0410-ab3c-d52691b4dbfc Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'Source/WebCore')
-rw-r--r--Source/WebCore/ChangeLog14
-rw-r--r--Source/WebCore/platform/graphics/GraphicsTypes3D.h4
2 files changed, 16 insertions, 2 deletions
diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog
index 887a5d370..e61637560 100644
--- a/Source/WebCore/ChangeLog
+++ b/Source/WebCore/ChangeLog
@@ -1,3 +1,17 @@
+2012-12-10 Jonathan Liu <net147@gmail.com>
+
+ Fix GC3Dintptr and GC3Dsizeiptr typedefs for Win64
+ https://bugs.webkit.org/show_bug.cgi?id=104426
+
+ Reviewed by Simon Hausmann.
+
+ The GC3Dintptr and GC3Dsizeiptr typedefs are incorrect for Win64 as
+ LLP64 is used there. This would result in compile error due to
+ narrowing conversion of 64-bit pointer to signed long int which is
+ 32-bit.
+
+ * platform/graphics/GraphicsTypes3D.h:
+
2012-12-11 Jocelyn Turcotte <jocelyn.turcotte@digia.com>
[Qt] Fix the inspector not showing up on Windows
diff --git a/Source/WebCore/platform/graphics/GraphicsTypes3D.h b/Source/WebCore/platform/graphics/GraphicsTypes3D.h
index 303ff8d3f..203a3fd8a 100644
--- a/Source/WebCore/platform/graphics/GraphicsTypes3D.h
+++ b/Source/WebCore/platform/graphics/GraphicsTypes3D.h
@@ -42,8 +42,8 @@ typedef int GC3Dsizei;
typedef unsigned int GC3Duint;
typedef float GC3Dfloat;
typedef float GC3Dclampf;
-typedef signed long int GC3Dintptr;
-typedef signed long int GC3Dsizeiptr;
+typedef intptr_t GC3Dintptr;
+typedef intptr_t GC3Dsizeiptr;
typedef char GC3Dchar;
typedef GC3Duint Platform3DObject;