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

Unified Diff: chrome/browser/android/vr_shell/test/data/sample_inline.gltf

Issue 2757213003: Implementing glTF 1.0 parser (Closed)
Patch Set: Resolving merge. Created 3 years, 9 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
Index: chrome/browser/android/vr_shell/test/data/sample_inline.gltf
diff --git a/chrome/browser/android/vr_shell/test/data/sample_inline.gltf b/chrome/browser/android/vr_shell/test/data/sample_inline.gltf
new file mode 100644
index 0000000000000000000000000000000000000000..599147b29b96944046c14863c0447f0646bb6d8a
--- /dev/null
+++ b/chrome/browser/android/vr_shell/test/data/sample_inline.gltf
@@ -0,0 +1,56 @@
+{
+ "asset": {
+ "version": "1.0"
+ },
+ "buffers": {
+ "dummyBuffer": {
+ "uri": "data:application/octet-stream;base64,SEVMTE8gV09STEQh",
+ "byteLength": 12
+ }
+ },
+ "bufferViews": {
+ "dummyBufferView": {
+ "buffer": "dummyBuffer",
+ "byteLength": 20,
+ "byteOffset": 10,
+ "target": 1
+ }
+ },
+ "accessors": {
+ "dummyAccessor": {
+ "bufferView": "dummyBufferView",
+ "byteOffset": 10,
+ "byteStride": 16,
+ "componentType": 5,
+ "count": 24,
+ "type": "VEC3"
+ }
+ },
+ "meshes": {
+ "dummyMesh": {
+ "primitives": [
+ {
+ "attributes": {
+ "POSITION": "dummyAccessor"
+ },
+ "indices": "dummyAccessor",
+ "mode": 4
+ }
+ ]
+ }
+ },
+ "nodes": {
+ "dummyNode1": {
+ "children": ["dummyNode2"]
+ },
+ "dummyNode2": {
+ "meshes": ["dummyMesh"]
+ }
+ },
+ "scenes": {
+ "dummyScene": {
+ "nodes": ["dummyNode1"]
+ }
+ },
+ "scene": "dummyScene"
+}
« no previous file with comments | « chrome/browser/android/vr_shell/gltf_parser_unittest.cc ('k') | chrome/browser/android/vr_shell/test/paths.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698