diff options
author | Android (Google) Code Review <android-gerrit@google.com> | 2009-11-02 21:26:54 -0500 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2009-11-02 21:26:54 -0500 |
commit | 8637759a1d34a4adda292579d5f8790587659235 (patch) | |
tree | 5146d928142d0c3f246d9cb968db8f5302767bab /include | |
parent | 483d29c0ddc9f4c110a8a8788ccd978010d55aa4 (diff) | |
parent | 36d0184e089831b74de6005f01da9e7b26679bb9 (diff) | |
download | frameworks_base-8637759a1d34a4adda292579d5f8790587659235.zip frameworks_base-8637759a1d34a4adda292579d5f8790587659235.tar.gz frameworks_base-8637759a1d34a4adda292579d5f8790587659235.tar.bz2 |
Merge change I36d0184e into eclair
* changes:
fix[2228133] pixelflinger ignores the "vertical stride" leading to artifacts when playing back video
Diffstat (limited to 'include')
-rw-r--r-- | include/private/opengles/gl_context.h | 4 | ||||
-rw-r--r-- | include/ui/GraphicBuffer.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/include/private/opengles/gl_context.h b/include/private/opengles/gl_context.h index 67c2dd8..26cde38 100644 --- a/include/private/opengles/gl_context.h +++ b/include/private/opengles/gl_context.h @@ -32,6 +32,8 @@ #include <GLES/gl.h> #include <GLES/glext.h> +struct android_native_buffer_t; + namespace android { const unsigned int OGLES_NUM_COMPRESSED_TEXTURE_FORMATS = 10; @@ -602,7 +604,7 @@ struct copybits_context_t { copybit_device_t* blitEngine; int32_t minScale; int32_t maxScale; - buffer_handle_t drawSurfaceBuffer; + android_native_buffer_t* drawSurfaceBuffer; }; struct ogles_context_t { diff --git a/include/ui/GraphicBuffer.h b/include/ui/GraphicBuffer.h index 2172536..b9c491b 100644 --- a/include/ui/GraphicBuffer.h +++ b/include/ui/GraphicBuffer.h @@ -93,6 +93,8 @@ public: void setIndex(int index); int getIndex() const; + void setVerticalStride(uint32_t vstride); + uint32_t getVerticalStride() const; protected: GraphicBuffer(const Parcel& reply); |