diff options
author | sheu@chromium.org <sheu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-18 02:42:26 +0000 |
---|---|---|
committer | sheu@chromium.org <sheu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-18 02:42:26 +0000 |
commit | 9ee2343406a6fae9c8aacc7303f7b1e5a04aab9e (patch) | |
tree | 3dc05a831a93c4ab05c333322a56e14273633ffd /gpu/ipc | |
parent | 218db375e36b887c6d9cdbbb1f9e1b272ed410f4 (diff) | |
download | chromium_src-9ee2343406a6fae9c8aacc7303f7b1e5a04aab9e.zip chromium_src-9ee2343406a6fae9c8aacc7303f7b1e5a04aab9e.tar.gz chromium_src-9ee2343406a6fae9c8aacc7303f7b1e5a04aab9e.tar.bz2 |
Add gpu::MailboxHolder to hold state for a gpu::Mailbox
gpu::Mailbox by itself can hold only a texture id, but in common usage it comes
with texture target and syncpoint information for cross-context sharing. To
reduce repetition of this pattern, gpu::MailboxHolder holds:
* a gpu::Mailbox
* a GL texture target
* a syncpoint index
Refactor other classes to use a gpu::MailboxHolder instead of separate
gpu::Mailbox and associated state.
Syncpoints are created with uint32 indices; make sure all uses of syncpoints use uint32.
BUG=None
TEST=local build, unittests on CrOS snow, desktop Linux
Review URL: https://codereview.chromium.org/105743004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245730 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gpu/ipc')
-rw-r--r-- | gpu/ipc/gpu_command_buffer_traits.cc | 22 | ||||
-rw-r--r-- | gpu/ipc/gpu_command_buffer_traits.h | 9 |
2 files changed, 30 insertions, 1 deletions
diff --git a/gpu/ipc/gpu_command_buffer_traits.cc b/gpu/ipc/gpu_command_buffer_traits.cc index d9fc17d..db482a9 100644 --- a/gpu/ipc/gpu_command_buffer_traits.cc +++ b/gpu/ipc/gpu_command_buffer_traits.cc @@ -3,7 +3,7 @@ // found in the LICENSE file. #include "gpu/ipc/gpu_command_buffer_traits.h" -#include "gpu/command_buffer/common/mailbox.h" +#include "gpu/command_buffer/common/mailbox_holder.h" namespace IPC { @@ -59,5 +59,25 @@ void ParamTraits<gpu::Mailbox>::Log(const param_type& p, std::string* l) { *l += base::StringPrintf("%02x", p.name[i]); } +void ParamTraits<gpu::MailboxHolder>::Write(Message* m, const param_type& p) { + WriteParam(m, p.mailbox); + WriteParam(m, p.texture_target); + WriteParam(m, p.sync_point); +} + +bool ParamTraits<gpu::MailboxHolder>::Read(const Message* m, + PickleIterator* iter, + param_type* p) { + if (!ReadParam(m, iter, &p->mailbox) || + !ReadParam(m, iter, &p->texture_target) || + !ReadParam(m, iter, &p->sync_point)) + return false; + return true; +} + +void ParamTraits<gpu::MailboxHolder>::Log(const param_type& p, std::string* l) { + ParamTraits<gpu::Mailbox>::Log(p.mailbox, l); + *l += base::StringPrintf(":%04x@%d", p.texture_target, p.sync_point); +} } // namespace IPC diff --git a/gpu/ipc/gpu_command_buffer_traits.h b/gpu/ipc/gpu_command_buffer_traits.h index 6b2531f..ce854d2 100644 --- a/gpu/ipc/gpu_command_buffer_traits.h +++ b/gpu/ipc/gpu_command_buffer_traits.h @@ -11,6 +11,7 @@ namespace gpu { struct Mailbox; +struct MailboxHolder; } namespace IPC { @@ -31,6 +32,14 @@ struct GPU_EXPORT ParamTraits<gpu::Mailbox> { static void Log(const param_type& p, std::string* l); }; +template <> +struct GPU_EXPORT ParamTraits<gpu::MailboxHolder> { + typedef gpu::MailboxHolder param_type; + static void Write(Message* m, const param_type& p); + static bool Read(const Message* m, PickleIterator* iter, param_type* p); + static void Log(const param_type& p, std::string* l); +}; + } // namespace IPC #endif // GPU_IPC_GPU_PARAM_TRAITS_H_ |