HomeSort by relevance Sort by last modified time
    Searched full:clearcolor (Results 1 - 25 of 271) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/chromium_org/content/test/data/gpu/
screenshot_sync.html 47 var clearColor = [0, 0, 0];
56 clearColor[0] = Math.floor(Math.random() * 256.0);
57 clearColor[1] = Math.floor(Math.random() * 256.0);
58 clearColor[2] = Math.floor(Math.random() * 256.0);
61 clearColor[0] + "," +
62 clearColor[1] + "," +
63 clearColor[2] + ")";
110 screenshotClearColor[0] = clearColor[0];
111 screenshotClearColor[1] = clearColor[1];
112 screenshotClearColor[2] = clearColor[2]
    [all...]
webgl.html 14 gl.clearColor(1, 0, 0, 1);
18 gl.clearColor(0, 1, 0, 1);
48 gl.clearColor(0, 0, 1, 1);
mem_webgl.html 104 gl.clearColor(0.0, Math.sin(t/60.0)*0.25 + 0.75*(i+1.0)/n, 0.0, 1.0);
111 gl.clearColor(0.0, 0.0, 0.0, 1.0);
webgl_with_select_element.html 21 gl.clearColor(intensity / 255.0, 0, 0, 1);
  /external/chromium_org/third_party/WebKit/ManualTests/
webgl-save-image-as.html 16 gl.clearColor(1, 0, 0, 1);
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
clear.c 70 * Clamps the parameters and updates gl_colorbuffer_attrib::ClearColor. On a
72 * dd_function_table::ClearColor callback.
86 if (TEST_EQ_4V(tmp, ctx->Color.ClearColor.f))
90 COPY_4V(ctx->Color.ClearColor.f, tmp);
109 if (TEST_EQ_4V(tmp, ctx->Color.ClearColor.i))
113 COPY_4V(ctx->Color.ClearColor.i, tmp);
132 if (TEST_EQ_4V(tmp, ctx->Color.ClearColor.ui))
136 COPY_4V(ctx->Color.ClearColor.ui, tmp);
356 clearSave = ctx->Color.ClearColor;
358 COPY_4V(ctx->Color.ClearColor.i, value)
    [all...]
  /external/mesa3d/src/mesa/main/
clear.c 70 * Clamps the parameters and updates gl_colorbuffer_attrib::ClearColor. On a
72 * dd_function_table::ClearColor callback.
86 if (TEST_EQ_4V(tmp, ctx->Color.ClearColor.f))
90 COPY_4V(ctx->Color.ClearColor.f, tmp);
109 if (TEST_EQ_4V(tmp, ctx->Color.ClearColor.i))
113 COPY_4V(ctx->Color.ClearColor.i, tmp);
132 if (TEST_EQ_4V(tmp, ctx->Color.ClearColor.ui))
136 COPY_4V(ctx->Color.ClearColor.ui, tmp);
356 clearSave = ctx->Color.ClearColor;
358 COPY_4V(ctx->Color.ClearColor.i, value)
    [all...]
  /external/chromium_org/content/test/data/gpu/functional_files/
context.js 26 gl_context.clearColor(0.0, 0.0, 0.0, 1.0);
  /external/deqp/modules/gles2/functional/
es2fDepthTests.cpp 123 tcu::Vec4 clearColor = tcu::Vec4(0.125f, 0.25f, 0.5f, 1.0f);
146 context.clearColor(clearColor.x(), clearColor.y(), clearColor.z(), clearColor.w());
159 context.clearColor(clearColor.x(), clearColor.y(), clearColor.z(), clearColor.w())
    [all...]
es2fFboRenderTest.cpp 560 Vec4 clearColor (0.125f, 0.25f, 0.5f, 1.0f);
587 context.clearColor(clearColor.x(), clearColor.y(), clearColor.z(), clearColor.w());
611 context.clearColor(clearColor.x(), clearColor.y(), clearColor.z(), clearColor.w())
    [all...]
  /external/deqp/modules/gles3/functional/
es3fDepthTests.cpp 126 tcu::Vec4 clearColor = tcu::Vec4(0.125f, 0.25f, 0.5f, 1.0f);
149 context.clearColor(clearColor.x(), clearColor.y(), clearColor.z(), clearColor.w());
162 context.clearColor(clearColor.x(), clearColor.y(), clearColor.z(), clearColor.w())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/mac/
ColorMac.mm 42 DEFINE_STATIC_LOCAL(RetainPtr<NSColor>, clearColor, ([NSColor colorWithDeviceRed:0 green:0 blue:0 alpha:0]));
43 return clearColor.get();
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
RenderPass.java 65 public void setClearColor(Float4 clearColor) {
66 mClearColor = clearColor;
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_clear.c 55 const GLfloat (*clearColor)[4] =
56 (const GLfloat (*)[4]) ctx->Color.ClearColor.f;
79 _mesa_pack_float_rgba_row(rb->Format, 1, clearColor, &pixel); \
107 _mesa_pack_float_rgba_row(rb->Format, 1, clearColor, pixel); \
  /external/mesa3d/src/mesa/swrast/
s_clear.c 55 const GLfloat (*clearColor)[4] =
56 (const GLfloat (*)[4]) ctx->Color.ClearColor.f;
79 _mesa_pack_float_rgba_row(rb->Format, 1, clearColor, &pixel); \
107 _mesa_pack_float_rgba_row(rb->Format, 1, clearColor, pixel); \
  /packages/wallpapers/MagicSmoke/src/com/android/magicsmoke/
clouds.rs 57 float4 clearColor;
101 static float4 clearColor = {0.5f, 0.0f, 0.0f, 1.0f};
157 gFSConstants->clearColor = clearColor;
390 clearColor.x = ((float)((gBackCol >> 16) & 0xff)) / 255.0f;
391 clearColor.y = ((float)((gBackCol >> 8) & 0xff)) / 255.0f;
392 clearColor.z = ((float)(gBackCol & 0xff)) / 255.0f;
  /external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/
gles_api.py 43 'ClearColor',
303 "ClearColor",
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_cb_clear.c 205 union pipe_color_union clearColor;
307 st_translate_color(&ctx->Color.ClearColor,
308 &clearColor,
314 draw_quad(st, x0, y0, x1, y1, (GLfloat) ctx->Depth.Clear, &clearColor);
537 union pipe_color_union clearColor;
550 st_translate_color(&ctx->Color.ClearColor,
551 &clearColor,
556 st->pipe->clear(st->pipe, clear_buffers, &clearColor,
  /external/mesa3d/src/mapi/glapi/gen/
gles_api.py 43 'ClearColor',
303 "ClearColor",
  /external/mesa3d/src/mesa/state_tracker/
st_cb_clear.c 205 union pipe_color_union clearColor;
307 st_translate_color(&ctx->Color.ClearColor,
308 &clearColor,
314 draw_quad(st, x0, y0, x1, y1, (GLfloat) ctx->Depth.Clear, &clearColor);
537 union pipe_color_union clearColor;
550 st_translate_color(&ctx->Color.ClearColor,
551 &clearColor,
556 st->pipe->clear(st->pipe, clear_buffers, &clearColor,
  /external/chromium_org/chrome/browser/ui/cocoa/constrained_window/
constrained_window_custom_window.mm 83 [[NSColor clearColor] set];
  /external/chromium_org/third_party/WebKit/PerformanceTests/Canvas/
draw-dynamic-webgl-to-hw-accelerated-canvas-2d.html 30 gl.clearColor(Math.random(), Math.random(), Math.random(), 1);
draw-static-webgl-to-hw-accelerated-canvas-2d.html 30 gl.clearColor(Math.random(), Math.random(), Math.random(), 1);
upload-webgl-to-texture.html 32 gl.clearColor(Math.random(), Math.random(), Math.random(), 1);
  /external/deqp/framework/opengl/wrapper/
glwFunctions.hpp 41 // glClearColorFunc clearColor;

Completed in 468 milliseconds

1 2 3 4 5 6 7 8 91011