HomeSort by relevance Sort by last modified time
    Searched defs:grey (Results 1 - 5 of 5) sorted by null

  /development/ndk/platforms/android-5/samples/hello-gl2/jni/
gl_code.cpp 150 static float grey; local
151 grey += 0.01f;
152 if (grey > 1.0f) {
153 grey = 0.0f;
155 glClearColor(grey, grey, grey, 1.0f);
  /frameworks/base/opengl/tests/gl2_jni/jni/
gl_code.cpp 130 static float grey; local
131 grey += 0.01f;
132 if (grey > 1.0f) {
133 grey = 0.0f;
135 glClearColor(grey, grey, grey, 1.0f);
  /frameworks/base/opengl/tests/gldual/jni/
gl_code.cpp 130 static float grey; local
131 grey += 0.01f;
132 if (grey > 1.0f) {
133 grey = 0.0f;
135 glClearColor(grey, grey, grey, 1.0f);
  /frameworks/base/opengl/tests/gl_jni/jni/
gl_code.cpp 170 static float grey; local
171 grey += 0.01f;
172 if (grey > 1.0f) {
173 grey = 0.0f;
175 glClearColor(background, grey, grey, 1.0f);
  /external/webkit/WebCore/rendering/
RenderThemeChromiumSkia.cpp 643 // Just paint a grey box for now (matches the color of a scrollbar background.
650 const SkColor grey = SkColorSetARGB(0xff, 0xe3, 0xdd, 0xd8); local
651 paint.setColor(grey);

Completed in 4586 milliseconds