Searched refs:clearColor (Results 1 - 25 of 254) sorted by relevance

1234567891011

/external/deqp/modules/gles2/functional/
H A Des2fDepthTests.cpp123 tcu::Vec4 clearColor = tcu::Vec4(0.125f, 0.25f, 0.5f, 1.0f); local
146 context.clearColor(clearColor.x(), clearColor.y(), clearColor.z(), clearColor.w());
159 context.clearColor(clearColor.x(), clearColor.y(), clearColor
[all...]
H A Des2fFboRenderTest.cpp560 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
[all...]
H A Des2fRandomFragmentOpTests.cpp308 const Vec4 clearColor = CLEAR_COLOR;
327 m_callLogWrapper.glClearColor(clearColor.x(), clearColor.y(), clearColor.z(), clearColor.w());
353 tcu::clear (m_refColorBuffer->getAccess(), clearColor);
/external/deqp/modules/gles3/functional/
H A Des3fDepthTests.cpp126 tcu::Vec4 clearColor = tcu::Vec4(0.125f, 0.25f, 0.5f, 1.0f); local
149 context.clearColor(clearColor.x(), clearColor.y(), clearColor.z(), clearColor.w());
162 context.clearColor(clearColor.x(), clearColor.y(), clearColor
[all...]
H A Des3fRandomFragmentOpTests.cpp308 const Vec4 clearColor = CLEAR_COLOR;
327 m_callLogWrapper.glClearColor(clearColor.x(), clearColor.y(), clearColor.z(), clearColor.w());
353 tcu::clear (m_refColorBuffer->getAccess(), clearColor);
/external/deqp/modules/egl/
H A DteglGLES2RenderUtil.cpp39 gl.clearColor(color.x(), color.y(), color.z(), color.w());
H A DteglPartialUpdateTests.cpp184 void clearColorScreen (const glw::Functions& gl, const tcu::Vec4& clearColor);
185 void clearColorReference (tcu::Surface* ref, const tcu::Vec4& clearColor);
307 m_gl.clearColor(coloredRect.color.x()/255.0f, coloredRect.color.y()/255.0f, coloredRect.color.z()/255.0f, 1.0f);
497 const tcu::Vec4 clearColor (clearRed, clearGreen, clearBlue, 1.0f);
556 clearColorScreen(m_gl, clearColor);
566 clearColorReference(&refBuffer, clearColor);
637 void clearColorScreen (const glw::Functions& gl, const tcu::Vec4& clearColor) argument
639 gl.clearColor(clearColor.x(), clearColor
643 clearColorReference(tcu::Surface* ref, const tcu::Vec4& clearColor) argument
[all...]
H A DteglBufferAgeTests.cpp196 void clearColorScreen (const glw::Functions& gl, const tcu::Vec4& clearColor);
197 void clearColorReference (tcu::Surface* ref, const tcu::Vec4& clearColor);
318 m_gl.clearColor(coloredRect.color.x()/255.0f, coloredRect.color.y()/255.0f, coloredRect.color.z()/255.0f, 1.0f);
497 const tcu::Vec4 clearColor (clearRed, clearGreen, clearBlue, 1.0f);
546 clearColorScreen(m_gl, clearColor);
576 clearColorReference(&refBuffer, clearColor);
589 clearColorScreen(m_gl, clearColor);
590 clearColorReference(&refBuffer, clearColor);
693 void clearColorScreen (const glw::Functions& gl, const tcu::Vec4& clearColor) argument
695 gl.clearColor(clearColo
699 clearColorReference(tcu::Surface* ref, const tcu::Vec4& clearColor) argument
[all...]
H A DteglSwapBuffersWithDamageTests.cpp130 void clearColorScreen (const glw::Functions& gl, const tcu::Vec4& clearColor);
249 m_gl.clearColor(coloredRect.color.x()/255.0f, coloredRect.color.y()/255.0f, coloredRect.color.z()/255.0f, 1.0f);
406 const tcu::Vec4 clearColor (clearRed, clearGreen, clearBlue, 1.0f);
419 clearColorScreen(m_gl, clearColor);
486 const tcu::Vec4 clearColor (clearRed, clearGreen, clearBlue, 1.0f);
495 clearColorScreen(m_gl, clearColor);
574 const tcu::Vec4 clearColor (clearRed, clearGreen, clearBlue, 1.0f);
583 clearColorScreen(m_gl, clearColor);
605 clearColorScreen(m_gl, clearColor);
749 void clearColorScreen (const glw::Functions& gl, const tcu::Vec4& clearColor) argument
[all...]
H A DteglSwapBuffersTests.cpp339 gl.clearColor(1.0f, 1.0f, 1.0f, 1.0f);
357 gl.clearColor(0.0f, 0.0f, 0.0f, 1.0f);
374 gl.clearColor(0.7f, 1.0f, 0.3f, 1.0f);
389 gl.clearColor(0.7f, 0.7f, 1.0f, 1.0f);
/external/skia/tests/
H A DVkClearTests.cpp22 GrColor clearColor,
28 matchColor = clearColor;
31 matchColor = GrColorPackRGBA(GrColorUnpackB(clearColor),
32 GrColorUnpackG(clearColor),
33 GrColorUnpackR(clearColor),
34 GrColorUnpackA(clearColor));
21 does_full_buffer_contain_correct_color(GrColor* buffer, GrColor clearColor, GrPixelConfig config, int width, int height) argument
/external/skqp/tests/
H A DVkClearTests.cpp22 GrColor clearColor,
28 matchColor = clearColor;
31 matchColor = GrColorPackRGBA(GrColorUnpackB(clearColor),
32 GrColorUnpackG(clearColor),
33 GrColorUnpackR(clearColor),
34 GrColorUnpackA(clearColor));
21 does_full_buffer_contain_correct_color(GrColor* buffer, GrColor clearColor, GrPixelConfig config, int width, int height) argument
/external/swiftshader/src/OpenGL/libGLES_CM/
H A DDevice.hpp49 void clearColor(float red, float green, float blue, float alpha, unsigned int rgbaMask);
/external/deqp/external/vulkancts/modules/vulkan/dynamic_state/
H A DvktDynamicStateBaseClass.cpp189 const vk::VkClearColorValue clearColor = { { 0.0f, 0.0f, 0.0f, 1.0f } }; local
190 beginRenderPassWithClearColor(clearColor);
193 void DynamicStateBaseClass::beginRenderPassWithClearColor (const vk::VkClearColorValue& clearColor) argument
202 vk::VK_IMAGE_LAYOUT_GENERAL, &clearColor, 1, &subresourceRange);
H A DvktDynamicStateBaseClass.hpp54 void beginRenderPassWithClearColor (const vk::VkClearColorValue& clearColor);
/external/swiftshader/src/OpenGL/libGL/
H A DDevice.hpp57 void clearColor(float red, float green, float blue, float alpha, unsigned int rgbaMask);
/external/deqp/external/vulkancts/modules/vulkan/api/
H A DvktApiSmokeTests.cpp339 const tcu::Vec4 clearColor (0.125f, 0.25f, 0.75f, 1.0f);
768 const VkClearValue clearValue = makeClearValueColorF32(clearColor[0],
769 clearColor[1],
770 clearColor[2],
771 clearColor[3]);
921 tcu::clear(refImage.getAccess(), clearColor);
951 const tcu::Vec4 clearColor (0.125f, 0.25f, 0.75f, 1.0f);
1385 const VkClearValue clearValue = makeClearValueColorF32(clearColor[0],
1386 clearColor[1],
1387 clearColor[
[all...]
/external/deqp/modules/glshared/
H A DglsScissorTests.cpp234 gl.clearColor(0.125f, 0.25f, 0.5f, 1.0f);
255 gl.clearColor(0.125f, 0.25f, 0.5f, 1.0f);
442 gl.clearColor(0.6f, 0.1f, 0.1f, 1.0);
459 gl.clearColor(0.1f, 0.6f, 0.1f, 1.0);
504 const tcu::Vec4 clearColor (1.0f, 0.5, 0.125f, 1.0f);
514 gl.clearBufferfv(GL_COLOR, 0, clearColor.getPtr());
797 const Color clearColor = getMainColor(bufferFmt); local
804 case CLEAR_COLOR_FIXED: gl.clearBufferfv (GL_COLOR, 0, clearColor.f); break;
805 case CLEAR_COLOR_FLOAT: gl.clearBufferfv (GL_COLOR, 0, clearColor.f); break;
806 case CLEAR_COLOR_INT: gl.clearBufferiv (GL_COLOR, 0, clearColor
[all...]
/external/mesa3d/src/mesa/swrast/
H A Ds_clear.c55 const GLfloat (*clearColor)[4] =
79 _mesa_pack_float_rgba_row(rb->Format, 1, clearColor, &pixel); \
107 _mesa_pack_float_rgba_row(rb->Format, 1, clearColor, pixel); \
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelineReferenceRenderer.cpp197 tcu::Vec4 clearColor = defaultClearColor(m_colorFormat); local
200 clearColor = tcu::linearToSRGB(clearColor);
202 tcu::clear(m_colorBuffer.getAccess(), clearColor);
203 tcu::clear(m_resolveColorBuffer.getAccess(), clearColor);
/external/autotest/client/deps/webgl_mpd/src/resources/
H A DJ3DI.js31 function initWebGL(canvasName, vshader, fshader, attribs, clearColor, clearDepth)
56 function simpleSetup(gl, vshader, fshader, attribs, clearColor, clearDepth)
92 gl.clearColor(clearColor[0], clearColor[1], clearColor[2], clearColor[3]);
/external/deqp/external/vulkancts/modules/vulkan/fragment_ops/
H A DvktFragmentOperationsScissorMultiViewportTests.cpp448 const Vec4& clearColor,
455 tcu::clear(image.getAccess(), clearColor);
555 const Vec4& clearColor,
560 , m_clearColor (clearColor)
726 const Vec4 clearColor (0.5f, 0.5f, 0.5f, 1.0f);
744 const ScissorRenderer renderer (context, renderSize, numViewports, scissors, colorFormat, clearColor, vertexColors);
753 const tcu::TextureLevel referenceImage = generateReferenceImage(mapVkFormat(colorFormat), renderSize, clearColor, scissors, vertexColors);
446 generateReferenceImage(const tcu::TextureFormat format, const IVec2& renderSize, const Vec4& clearColor, const std::vector<IVec4>& scissors, const std::vector<Vec4>& scissorColors) argument
550 ScissorRenderer(Context& context, const IVec2& renderSize, const int numViewports, const std::vector<IVec4>& scissors, const VkFormat colorFormat, const Vec4& clearColor, const std::vector<Vec4>& vertices) argument
/external/deqp/external/vulkancts/modules/vulkan/geometry/
H A DvktGeometryInstancedRenderingTests.cpp343 const Vec4& clearColor,
386 const VkClearValue clearValue = makeClearValueColor(clearColor);
513 void generateReferenceImage(tcu::PixelBufferAccess image, const Vec4& clearColor, const std::vector<Vec4>& perInstancePosition, const int numInvocations) argument
515 tcu::clear(image, clearColor);
636 const Vec4 clearColor = Vec4(0.0f, 0.0f, 0.0f, 1.0f); local
651 draw(context, renderSize, colorFormat, clearColor, *colorBuffer, params.numDrawInstances, perInstancePosition);
659 generateReferenceImage(reference.getAccess(), clearColor, perInstancePosition, params.numInvocations);
340 draw(Context& context, const UVec2& renderSize, const VkFormat colorFormat, const Vec4& clearColor, const VkBuffer colorBuffer, const int numDrawInstances, const std::vector<Vec4>& perInstanceAttribute) argument
/external/deqp/external/openglcts/modules/gles2/
H A Des2cTestPackage.cpp82 gl.clearColor(0.0f, 0.0f, 0.0f, 1.f);
/external/deqp/modules/gles2/
H A Dtes2TestPackage.cpp87 gl.clearColor(0.125f, 0.25f, 0.5f, 1.f);

Completed in 930 milliseconds

1234567891011