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

Side by Side Diff: content/common/gpu/stream_texture_android.h

Issue 1140683002: glBindTexImage2DCHROMIUM should retain pixel format. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add GetInternalFormat override to MockGLImage. Created 5 years, 7 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
« no previous file with comments | « no previous file | content/common/gpu/stream_texture_android.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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 CONTENT_COMMON_GPU_STREAM_TEXTURE_ANDROID_H_ 5 #ifndef CONTENT_COMMON_GPU_STREAM_TEXTURE_ANDROID_H_
6 #define CONTENT_COMMON_GPU_STREAM_TEXTURE_ANDROID_H_ 6 #define CONTENT_COMMON_GPU_STREAM_TEXTURE_ANDROID_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/memory/weak_ptr.h" 9 #include "base/memory/weak_ptr.h"
10 #include "content/common/gpu/gpu_command_buffer_stub.h" 10 #include "content/common/gpu/gpu_command_buffer_stub.h"
(...skipping 17 matching lines...) Expand all
28 28
29 private: 29 private:
30 StreamTexture(GpuCommandBufferStub* owner_stub, 30 StreamTexture(GpuCommandBufferStub* owner_stub,
31 int32 route_id, 31 int32 route_id,
32 uint32 texture_id); 32 uint32 texture_id);
33 ~StreamTexture() override; 33 ~StreamTexture() override;
34 34
35 // gfx::GLImage implementation: 35 // gfx::GLImage implementation:
36 void Destroy(bool have_context) override; 36 void Destroy(bool have_context) override;
37 gfx::Size GetSize() override; 37 gfx::Size GetSize() override;
38 unsigned GetInternalFormat() override;
38 bool BindTexImage(unsigned target) override; 39 bool BindTexImage(unsigned target) override;
39 void ReleaseTexImage(unsigned target) override; 40 void ReleaseTexImage(unsigned target) override;
40 bool CopyTexImage(unsigned target) override; 41 bool CopyTexImage(unsigned target) override;
41 void WillUseTexImage() override; 42 void WillUseTexImage() override;
42 void DidUseTexImage() override {} 43 void DidUseTexImage() override {}
43 void WillModifyTexImage() override {} 44 void WillModifyTexImage() override {}
44 void DidModifyTexImage() override {} 45 void DidModifyTexImage() override {}
45 bool ScheduleOverlayPlane(gfx::AcceleratedWidget widget, 46 bool ScheduleOverlayPlane(gfx::AcceleratedWidget widget,
46 int z_order, 47 int z_order,
47 gfx::OverlayTransform transform, 48 gfx::OverlayTransform transform,
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 int32 route_id_; 81 int32 route_id_;
81 bool has_listener_; 82 bool has_listener_;
82 83
83 base::WeakPtrFactory<StreamTexture> weak_factory_; 84 base::WeakPtrFactory<StreamTexture> weak_factory_;
84 DISALLOW_COPY_AND_ASSIGN(StreamTexture); 85 DISALLOW_COPY_AND_ASSIGN(StreamTexture);
85 }; 86 };
86 87
87 } // namespace content 88 } // namespace content
88 89
89 #endif // CONTENT_COMMON_GPU_STREAM_TEXTURE_ANDROID_H_ 90 #endif // CONTENT_COMMON_GPU_STREAM_TEXTURE_ANDROID_H_
OLDNEW
« no previous file with comments | « no previous file | content/common/gpu/stream_texture_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698