OLD | NEW |
1 // Copyright (c) 2011 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 #ifndef MEDIA_TOOLS_SHADER_BENCH_GPU_PAINTER_H_ | 5 #ifndef MEDIA_TOOLS_SHADER_BENCH_GPU_PAINTER_H_ |
6 #define MEDIA_TOOLS_SHADER_BENCH_GPU_PAINTER_H_ | 6 #define MEDIA_TOOLS_SHADER_BENCH_GPU_PAINTER_H_ |
7 | 7 |
8 #include "media/tools/shader_bench/painter.h" | 8 #include "media/tools/shader_bench/painter.h" |
9 #include "ui/gfx/gl/gl_bindings.h" | 9 #include "ui/gl/gl_bindings.h" |
10 #include "ui/gfx/gl/gl_context.h" | 10 #include "ui/gl/gl_context.h" |
11 #include "ui/gfx/gl/gl_implementation.h" | 11 #include "ui/gl/gl_implementation.h" |
12 #include "ui/gfx/gl/gl_surface.h" | 12 #include "ui/gl/gl_surface.h" |
13 | 13 |
14 // Class that renders video frames to a window via GPU. | 14 // Class that renders video frames to a window via GPU. |
15 class GPUPainter : public Painter { | 15 class GPUPainter : public Painter { |
16 public: | 16 public: |
17 GPUPainter(); | 17 GPUPainter(); |
18 virtual ~GPUPainter(); | 18 virtual ~GPUPainter(); |
19 | 19 |
20 // Returns a reference to the GL context. | 20 // Returns a reference to the GL context. |
21 gfx::GLSurface* surface() const { return surface_; } | 21 gfx::GLSurface* surface() const { return surface_; } |
22 gfx::GLContext* context() const { return context_; } | 22 gfx::GLContext* context() const { return context_; } |
(...skipping 13 matching lines...) Expand all Loading... |
36 GLuint LoadShader(unsigned type, const char* shader_source); | 36 GLuint LoadShader(unsigned type, const char* shader_source); |
37 | 37 |
38 // Reference to the gl context. | 38 // Reference to the gl context. |
39 gfx::GLSurface* surface_; | 39 gfx::GLSurface* surface_; |
40 gfx::GLContext* context_; | 40 gfx::GLContext* context_; |
41 | 41 |
42 DISALLOW_COPY_AND_ASSIGN(GPUPainter); | 42 DISALLOW_COPY_AND_ASSIGN(GPUPainter); |
43 }; | 43 }; |
44 | 44 |
45 #endif // MEDIA_TOOLS_SHADER_BENCH_GPU_PAINTER_H_ | 45 #endif // MEDIA_TOOLS_SHADER_BENCH_GPU_PAINTER_H_ |
OLD | NEW |