diff options
Diffstat (limited to 'gpu/command_buffer/client/gles2_implementation.h')
-rw-r--r-- | gpu/command_buffer/client/gles2_implementation.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gpu/command_buffer/client/gles2_implementation.h b/gpu/command_buffer/client/gles2_implementation.h index 97398be..1c2eba9 100644 --- a/gpu/command_buffer/client/gles2_implementation.h +++ b/gpu/command_buffer/client/gles2_implementation.h @@ -692,6 +692,15 @@ class GLES2_IMPL_EXPORT GLES2Implementation // pack alignment as last set by glPixelStorei GLint pack_alignment_; + // pack row length as last set by glPixelStorei + GLint pack_row_length_; + + // pack skip pixels as last set by glPixelStorei + GLint pack_skip_pixels_; + + // pack skip rows as last set by glPixelStorei + GLint pack_skip_rows_; + // unpack alignment as last set by glPixelStorei GLint unpack_alignment_; |