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

Side by Side Diff: gpu/command_buffer/service/program_manager.cc

Issue 2293583002: Change includes of histogram.h to histogram_macros.h. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "gpu/command_buffer/service/program_manager.h" 5 #include "gpu/command_buffer/service/program_manager.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <algorithm> 10 #include <algorithm>
11 #include <memory> 11 #include <memory>
12 #include <set> 12 #include <set>
13 #include <utility> 13 #include <utility>
14 #include <vector> 14 #include <vector>
15 15
16 #include "base/command_line.h" 16 #include "base/command_line.h"
17 #include "base/containers/hash_tables.h" 17 #include "base/containers/hash_tables.h"
18 #include "base/logging.h" 18 #include "base/logging.h"
19 #include "base/metrics/histogram.h" 19 #include "base/metrics/histogram_macros.h"
20 #include "base/numerics/safe_math.h" 20 #include "base/numerics/safe_math.h"
21 #include "base/strings/string_number_conversions.h" 21 #include "base/strings/string_number_conversions.h"
22 #include "base/strings/string_util.h" 22 #include "base/strings/string_util.h"
23 #include "base/strings/stringprintf.h" 23 #include "base/strings/stringprintf.h"
24 #include "base/time/time.h" 24 #include "base/time/time.h"
25 #include "gpu/command_buffer/common/gles2_cmd_format.h" 25 #include "gpu/command_buffer/common/gles2_cmd_format.h"
26 #include "gpu/command_buffer/common/gles2_cmd_utils.h" 26 #include "gpu/command_buffer/common/gles2_cmd_utils.h"
27 #include "gpu/command_buffer/service/feature_info.h" 27 #include "gpu/command_buffer/service/feature_info.h"
28 #include "gpu/command_buffer/service/gles2_cmd_decoder.h" 28 #include "gpu/command_buffer/service/gles2_cmd_decoder.h"
29 #include "gpu/command_buffer/service/gpu_preferences.h" 29 #include "gpu/command_buffer/service/gpu_preferences.h"
(...skipping 2548 matching lines...) Expand 10 before | Expand all | Expand 10 after
2578 DCHECK(program); 2578 DCHECK(program);
2579 program->ClearUniforms(&zero_); 2579 program->ClearUniforms(&zero_);
2580 } 2580 }
2581 2581
2582 int32_t ProgramManager::MakeFakeLocation(int32_t index, int32_t element) { 2582 int32_t ProgramManager::MakeFakeLocation(int32_t index, int32_t element) {
2583 return index + element * 0x10000; 2583 return index + element * 0x10000;
2584 } 2584 }
2585 2585
2586 } // namespace gles2 2586 } // namespace gles2
2587 } // namespace gpu 2587 } // namespace gpu
OLDNEW
« no previous file with comments | « gpu/command_buffer/service/memory_program_cache.cc ('k') | media/audio/audio_output_resampler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698