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

Unified Diff: gpu/command_buffer/service/stream_texture_manager.h

Issue 23234003: Support stream textures with the synchronous compositor (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: android clang Created 7 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: gpu/command_buffer/service/stream_texture_manager.h
diff --git a/gpu/command_buffer/service/stream_texture_manager.h b/gpu/command_buffer/service/stream_texture_manager.h
index b4f0a534954bf3589db7688770de1e658c7218a1..51119fad528aca59aeca43dc12016a00d166ee8c 100644
--- a/gpu/command_buffer/service/stream_texture_manager.h
+++ b/gpu/command_buffer/service/stream_texture_manager.h
@@ -6,7 +6,6 @@
#define GPU_COMMAND_BUFFER_SERVICE_STREAM_TEXTURE_MANAGER_H_
#include "base/basictypes.h"
-#include "gpu/command_buffer/service/gl_utils.h"
namespace gpu {
@@ -22,8 +21,7 @@ class StreamTextureManager {
}
// Returns an identifier for the object, or NULL if not successful.
- virtual GLuint CreateStreamTexture(uint32 service_id,
- uint32 client_id) = 0;
+ virtual uint32 CreateStreamTexture(uint32 service_id, uint32 client_id) = 0;
virtual void DestroyStreamTexture(uint32 service_id) = 0;

Powered by Google App Engine
This is Rietveld 408576698