Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(298)

Unified Diff: third_party/WebKit/Source/core/dom/TypedFlexibleArrayBufferView.h

Issue 1379863003: Added overloads of uniform[1234]uiv taking Uint32Array to match spec. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed typo causing crashes in uniform API tests. Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/modules/webgl/WebGL2RenderingContextBase.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/dom/TypedFlexibleArrayBufferView.h
diff --git a/third_party/WebKit/Source/core/dom/TypedFlexibleArrayBufferView.h b/third_party/WebKit/Source/core/dom/TypedFlexibleArrayBufferView.h
index 814b4f2a54ed13abbe7481ec36c4981762af4f7d..5b35aa5e2e488871121556dac3576b58d73b164d 100644
--- a/third_party/WebKit/Source/core/dom/TypedFlexibleArrayBufferView.h
+++ b/third_party/WebKit/Source/core/dom/TypedFlexibleArrayBufferView.h
@@ -29,8 +29,9 @@ public:
}
};
-using FlexibleInt32ArrayView = TypedFlexibleArrayBufferView<WTF::Int32Array>;
using FlexibleFloat32ArrayView = TypedFlexibleArrayBufferView<WTF::Float32Array>;
+using FlexibleInt32ArrayView = TypedFlexibleArrayBufferView<WTF::Int32Array>;
+using FlexibleUint32ArrayView = TypedFlexibleArrayBufferView<WTF::Uint32Array>;
} // namespace blink
« no previous file with comments | « no previous file | third_party/WebKit/Source/modules/webgl/WebGL2RenderingContextBase.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698