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

Unified Diff: ppapi/thunk/ppb_context_3d_api.h

Issue 8566059: Add CommandBuffer::SetGetBuffer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: etc Created 9 years, 1 month 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: ppapi/thunk/ppb_context_3d_api.h
diff --git a/ppapi/thunk/ppb_context_3d_api.h b/ppapi/thunk/ppb_context_3d_api.h
index feeba898d17d986fda609e17ab0e73c493d38649..9829da0b5f22dea60470284303baa96e2d58acad 100644
--- a/ppapi/thunk/ppb_context_3d_api.h
+++ b/ppapi/thunk/ppb_context_3d_api.h
@@ -28,9 +28,8 @@ class PPB_Context3D_API {
virtual int32_t GetBoundSurfaces(PP_Resource* draw, PP_Resource* read) = 0;
// Context3DTrusted.
- virtual PP_Bool InitializeTrusted(int32_t size) = 0;
- virtual PP_Bool GetRingBuffer(int* shm_handle,
- uint32_t* shm_size) = 0;
+ virtual PP_Bool InitializeTrusted() = 0;
+ virtual PP_Bool SetGetBuffer(int32_t shm_id) = 0;
virtual PP_Context3DTrustedState GetState() = 0;
virtual PP_Bool Flush(int32_t put_offset) = 0;
virtual PP_Context3DTrustedState FlushSync(int32_t put_offset) = 0;

Powered by Google App Engine
This is Rietveld 408576698