summaryrefslogtreecommitdiffstats
path: root/opengl/tests/filter/filter.cpp
diff options
context:
space:
mode:
authorChih-Hung Hsieh <chh@google.com>2014-12-11 23:02:01 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-12-11 23:02:01 +0000
commit2965dab9091382803430a0607118e20e93d2bd1d (patch)
tree171368ac803c8ec49dea700767f57f7c00f0e5c1 /opengl/tests/filter/filter.cpp
parentd9799072de47ecd3e6d4cdb2bfd3db75f4d94bd5 (diff)
parentbceb29c83ea54d38b38e40d66402e56364cff56b (diff)
downloadframeworks_native-2965dab9091382803430a0607118e20e93d2bd1d.zip
frameworks_native-2965dab9091382803430a0607118e20e93d2bd1d.tar.gz
frameworks_native-2965dab9091382803430a0607118e20e93d2bd1d.tar.bz2
am bceb29c8: Merge "Fix clang -Wc++11-narrowing warnings."
* commit 'bceb29c83ea54d38b38e40d66402e56364cff56b': Fix clang -Wc++11-narrowing warnings.
Diffstat (limited to 'opengl/tests/filter/filter.cpp')
-rw-r--r--opengl/tests/filter/filter.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/opengl/tests/filter/filter.cpp b/opengl/tests/filter/filter.cpp
index 289e6cc..287ee93 100644
--- a/opengl/tests/filter/filter.cpp
+++ b/opengl/tests/filter/filter.cpp
@@ -140,11 +140,12 @@ int main(int argc, char** argv)
//glDrawTexiOES(0, 0, 0, dim, dim);
+ const GLfloat fdim = dim;
const GLfloat vertices[4][2] = {
- { 0, 0 },
- { 0, dim },
- { dim, dim },
- { dim, 0 }
+ { 0, 0 },
+ { 0, fdim },
+ { fdim, fdim },
+ { fdim, 0 }
};
const GLfloat texCoords[4][2] = {