From cc73c8df5c04a0e495b247254087ca0ee9eb2418 Mon Sep 17 00:00:00 2001 From: dan sinclair Date: Wed, 11 Nov 2020 16:06:45 +0000 Subject: [PATCH] Remove unused function Change-Id: Idf831d3b6b4c6e97191ebead9fd503d4a15db9e3 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/32380 Commit-Queue: Ryan Harrison Reviewed-by: Ryan Harrison --- src/inspector/inspector_test.cc | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/inspector/inspector_test.cc b/src/inspector/inspector_test.cc index 822aeeef1a..d4803a56a7 100644 --- a/src/inspector/inspector_test.cc +++ b/src/inspector/inspector_test.cc @@ -480,11 +480,6 @@ class InspectorHelper { name, ast::StorageClass::kUniformConstant, f32_type())); } - void AddF32Vec(const std::string& name, uint32_t count) { - mod()->AddGlobalVariable(std::make_unique( - name, ast::StorageClass::kUniformConstant, f32_vec_type(count))); - } - /// Adds a depth texture variable to the module /// @param name the name of the variable /// @param type the type to use