Chromium Code Reviews| Index: gpu/command_buffer/service/gles2_cmd_decoder.h |
| diff --git a/gpu/command_buffer/service/gles2_cmd_decoder.h b/gpu/command_buffer/service/gles2_cmd_decoder.h |
| index 63618c2a2da03724e96efc202f940c6c9b40de36..8d64e964ef9f3ec650ce140ba6d79718f45398ab 100644 |
| --- a/gpu/command_buffer/service/gles2_cmd_decoder.h |
| +++ b/gpu/command_buffer/service/gles2_cmd_decoder.h |
| @@ -29,6 +29,7 @@ namespace gpu { |
| class AsyncPixelTransferDelegate; |
| class AsyncPixelTransferManager; |
| struct Mailbox; |
| +union ValueState; |
|
brianderson
2014/11/20 21:11:26
Is this needed?
orglofch
2014/11/20 21:25:04
Should have been in gpu_channel.h. Moved it.
|
| namespace gles2 { |
| @@ -39,6 +40,7 @@ class ImageManager; |
| class Logger; |
| class QueryManager; |
| class VertexArrayManager; |
| +class ValuebufferManager; |
| struct ContextState; |
| struct DisallowedFeatures { |
| @@ -170,6 +172,9 @@ class GPU_EXPORT GLES2Decoder : public base::SupportsWeakPtr<GLES2Decoder>, |
| // Gets the ImageManager for this context. |
| virtual ImageManager* GetImageManager() = 0; |
| + // Gets the ValuebufferManager for this context. |
| + virtual ValuebufferManager* GetValuebufferManager() = 0; |
| + |
| // Process any pending queries. Returns false if there are no pending queries. |
| virtual bool ProcessPendingQueries(bool did_finish) = 0; |