diff options
Diffstat (limited to 'gpu/command_buffer/service/gles2_cmd_decoder.h')
-rw-r--r-- | gpu/command_buffer/service/gles2_cmd_decoder.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gpu/command_buffer/service/gles2_cmd_decoder.h b/gpu/command_buffer/service/gles2_cmd_decoder.h index cfa4c66..fae1af0 100644 --- a/gpu/command_buffer/service/gles2_cmd_decoder.h +++ b/gpu/command_buffer/service/gles2_cmd_decoder.h @@ -26,6 +26,7 @@ class XWindowWrapper; namespace gles2 { class ContextGroup; +class GLES2Util; // This class implements the AsyncAPIInterface interface, decoding GLES2 // commands and calling GL. @@ -84,6 +85,9 @@ class GLES2Decoder : public CommonDecoder { // Gets a service id by client id. virtual uint32 GetServiceIdForTesting(uint32 client_id) = 0; + // Gets the GLES2 Util which holds info. + virtual GLES2Util* GetGLES2Util() = 0; + // Sets a callback which is called when a SwapBuffers command is processed. virtual void SetSwapBuffersCallback(Callback0::Type* callback) = 0; |