summaryrefslogtreecommitdiffstats
path: root/opengl/libs/EGL/egl_cache.h
diff options
context:
space:
mode:
authorJamie Gennis <jgennis@google.com>2011-11-14 17:36:46 -0800
committerAndroid (Google) Code Review <android-gerrit@google.com>2011-11-14 17:36:46 -0800
commit6b228af6ff20b3f592db4ad5662e1bc401d09b4d (patch)
tree2acfe79ade7834915dec27691a84b3917d696c84 /opengl/libs/EGL/egl_cache.h
parentff95f6572596c48b58f5a73d23b2273866ea3fab (diff)
parentb7928463a32092940dd56b0694a624c21d18325d (diff)
downloadframeworks_base-6b228af6ff20b3f592db4ad5662e1bc401d09b4d.zip
frameworks_base-6b228af6ff20b3f592db4ad5662e1bc401d09b4d.tar.gz
frameworks_base-6b228af6ff20b3f592db4ad5662e1bc401d09b4d.tar.bz2
Merge "EGL: add the ANDROID suffix to the blob cache ext" into ics-mr1
Diffstat (limited to 'opengl/libs/EGL/egl_cache.h')
-rw-r--r--opengl/libs/EGL/egl_cache.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/opengl/libs/EGL/egl_cache.h b/opengl/libs/EGL/egl_cache.h
index 4389623..8760009 100644
--- a/opengl/libs/EGL/egl_cache.h
+++ b/opengl/libs/EGL/egl_cache.h
@@ -52,14 +52,14 @@ public:
// setBlob attempts to insert a new key/value blob pair into the cache.
// This will be called by the hardware vendor's EGL implementation via the
// EGL_ANDROID_blob_cache extension.
- void setBlob(const void* key, EGLsizei keySize, const void* value,
- EGLsizei valueSize);
+ void setBlob(const void* key, EGLsizeiANDROID keySize, const void* value,
+ EGLsizeiANDROID valueSize);
// getBlob attempts to retrieve the value blob associated with a given key
// blob from cache. This will be called by the hardware vendor's EGL
// implementation via the EGL_ANDROID_blob_cache extension.
- EGLsizei getBlob(const void* key, EGLsizei keySize, void* value,
- EGLsizei valueSize);
+ EGLsizeiANDROID getBlob(const void* key, EGLsizeiANDROID keySize,
+ void* value, EGLsizeiANDROID valueSize);
// setCacheFilename sets the name of the file that should be used to store
// cache contents from one program invocation to another.