From ae10d4343ccad3042b995a7f1fc47949d35fa014 Mon Sep 17 00:00:00 2001 From: howard-stearns Date: Mon, 1 Feb 2016 11:47:33 -0800 Subject: [PATCH] Add data for a 2k triangle model. --- examples/tests/performance/renderableMatrix.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/examples/tests/performance/renderableMatrix.js b/examples/tests/performance/renderableMatrix.js index bde420129d..46a197a04a 100644 --- a/examples/tests/performance/renderableMatrix.js +++ b/examples/tests/performance/renderableMatrix.js @@ -38,6 +38,11 @@ switch ('primitives') { // Quickly override the above by putting here one of the ROWS_X = ROWS_Y = 10; ROWS_Z = 9; break; + case 'gun': // 2.1k triangles/entity + TYPES_TO_USE = ["https://hifi-content.s3.amazonaws.com/ozan/dev/props/guns/nail_gun/nail_gun.fbx"]; + ROWS_X = ROWS_Y = 10; + ROWS_Z = 7; + break; case 'trees': // 12k triangles/entity TYPES_TO_USE = ["https://hifi-content.s3.amazonaws.com/ozan/dev/sets/lowpoly_island/CypressTreeGroup.fbx"]; ROWS_X = ROWS_Z = 6;