Searched refs:GPUTrace (Results 1 – 3 of 3) sorted by relevance
/external/chromium_org/gpu/command_buffer/service/ |
D | gpu_tracer.h | 23 class GPUTrace; variable 49 scoped_refptr<GPUTrace> trace_; 78 scoped_refptr<GPUTrace> CreateTrace(const std::string& name); 87 std::deque<scoped_refptr<GPUTrace> > traces_; 133 class GPU_EXPORT GPUTrace 134 : public base::RefCounted<GPUTrace> { 136 GPUTrace(scoped_refptr<Outputter> outputter, 150 ~GPUTrace(); 154 friend class base::RefCounted<GPUTrace>; 167 DISALLOW_COPY_AND_ASSIGN(GPUTrace);
|
D | gpu_tracer.cc | 62 GPUTrace::GPUTrace(scoped_refptr<Outputter> outputter, in GPUTrace() function in gpu::gles2::GPUTrace 85 GPUTrace::~GPUTrace() { in ~GPUTrace() 97 void GPUTrace::Start() { in Start() 126 void GPUTrace::End() { in End() 143 bool GPUTrace::IsAvailable() { in IsAvailable() 156 void GPUTrace::Process() { in Process() 264 scoped_refptr<GPUTrace> trace = CreateTrace(name); in Begin() 281 scoped_refptr<GPUTrace> trace = markers_[source].back().trace_; in End() 309 scoped_refptr<GPUTrace> GPUTracer::CreateTrace(const std::string& name) { in CreateTrace() 313 return new GPUTrace(outputter_, name, timer_offset_, tracer_type); in CreateTrace()
|
D | gpu_tracer_unittest.cc | 139 scoped_refptr<GPUTrace> trace = in DoTraceTest() 140 new GPUTrace(outputter_ref, trace_name, offset_time, in DoTraceTest() 222 TEST_F(GpuARBTimerTracerTest, GPUTrace) { in TEST_F() argument 229 TEST_F(GpuDisjointTimerTracerTest, GPUTrace) { in TEST_F() argument
|