HomeSort by relevance Sort by last modified time
    Searched refs:renderArea (Results 1 - 25 of 96) sorted by null

1 2 3 4

  /external/deqp/modules/glshared/
glsScissorTests.hpp 81 const Vec4& renderArea,
glsScissorTests.cpp 293 const Vec4& renderArea,
312 const Vec4& renderArea,
316 , m_renderArea (renderArea)
847 const Vec4& renderArea,
851 return new ScissorPrimitiveCase(testCtx, renderCtx, name, desc, scissorArea, renderArea, type, primitiveCount);
  /hardware/qcom/display/msm8960/libhwcomposer/
hwc_copybit.cpp 103 unsigned int renderArea = getRGBRenderingArea(list);
104 ALOGD_IF (DEBUG_COPYBIT, "%s:renderArea %u, fbArea %u",
105 __FUNCTION__, renderArea, fbArea);
106 if (renderArea < (mDynThreshold * fbArea)) {
122 unsigned int renderArea = 0;
129 renderArea += (w*h);
133 return renderArea;
  /external/deqp/external/vulkancts/modules/vulkan/fragment_ops/
vktFragmentOperationsScissorTests.cpp 79 Vec4 renderArea; //!< (ox, oy, w, h), where origin (0,0) is the top-left corner of the viewport. Width and height are in range [0, 1].
375 std::vector<VertexData> genVertices (const TestPrimitive primitive, const Vec4& renderArea, const Vec4& primitiveColor)
380 const float x0 = 2.0f * renderArea.x() - 1.0f;
381 const float y0 = 2.0f * renderArea.y() - 1.0f;
382 const float rx = 2.0f * renderArea.z();
383 const float ry = 2.0f * renderArea.w();
539 , m_vertices (genVertices(caseDef.primitive, caseDef.renderArea, m_primitiveColor))
584 const VkRect2D renderArea =
595 renderArea, // VkRect2D renderArea;
    [all...]
vktFragmentOperationsEarlyFragmentTests.cpp 85 const VkRect2D& renderArea,
101 renderArea, // VkRect2D renderArea;
696 const VkRect2D renderArea = {
722 beginRenderPass(vk, *cmdBuffer, *renderPass, *framebuffer, renderArea, clearColor, 0.5f, 0u);
    [all...]
vktFragmentOperationsScissorMultiViewportTests.cpp 603 const VkRect2D renderArea =
614 renderArea, // VkRect2D renderArea;
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/draw/
vktDrawBaseClass.cpp 210 const vk::VkRect2D renderArea = { { 0, 0 }, { WIDTH, HEIGHT } };
211 const RenderPassBeginInfo renderPassBegin(*m_renderPass, *m_framebuffer, renderArea);
vktDrawNegativeViewportHeightTests.cpp 282 const VkRect2D renderArea = { { 0, 0 }, { WIDTH, HEIGHT } };
283 const RenderPassBeginInfo renderPassBegin (*m_renderPass, *m_framebuffer, renderArea);
  /external/deqp/external/vulkancts/modules/vulkan/geometry/
vktGeometryBasicClass.cpp 147 const VkRect2D renderArea = {
152 beginRenderPass(vk, *cmdBuffer, *renderPass, *framebuffer, renderArea, clearColor);
vktGeometryInstancedRenderingTests.cpp 387 const VkRect2D renderArea =
398 renderArea, // VkRect2D renderArea;
vktGeometryTestsUtil.cpp 617 const VkRect2D& renderArea,
627 renderArea, // VkRect2D renderArea;
  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineSpecConstantUtil.cpp 334 const VkRect2D& renderArea,
344 renderArea, // VkRect2D renderArea;
vktPipelineSpecConstantUtil.hpp 74 void beginRenderPass (const vk::DeviceInterface& vk, const vk::VkCommandBuffer commandBuffer, const vk::VkRenderPass renderPass, const vk::VkFramebuffer framebuffer, const vk::VkRect2D& renderArea, const tcu::Vec4& clearColor);
  /external/deqp/external/vulkancts/modules/vulkan/synchronization/
vktSynchronizationUtil.cpp 312 const VkRect2D& renderArea,
322 renderArea, // VkRect2D renderArea;
335 const VkRect2D renderArea = {{ 0, 0 }, { 0, 0 }};
342 renderArea, // VkRect2D renderArea;
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/dynamic_state/
vktDynamicStateBaseClass.cpp 216 const vk::VkRect2D renderArea = { { 0, 0 }, { WIDTH, HEIGHT } };
217 const RenderPassBeginInfo renderPassBegin(*m_renderPass, *m_framebuffer, renderArea);
  /hardware/qcom/display/msm8084/libhwcomposer/
hwc_copybit.cpp 99 unsigned int renderArea = getRGBRenderingArea(list);
100 ALOGD_IF (DEBUG_COPYBIT, "%s:renderArea %u, fbArea %u",
101 __FUNCTION__, renderArea, fbArea);
102 if (renderArea < (mDynThreshold * fbArea)) {
118 unsigned int renderArea = 0;
127 renderArea += (w*h);
131 return renderArea;
  /external/skia/src/gpu/vk/
GrVkCommandBuffer.cpp 396 VkRect2D renderArea;
397 renderArea.offset = { bounds.fLeft , bounds.fTop };
398 renderArea.extent = { (uint32_t)bounds.width(), (uint32_t)bounds.height() };
405 beginInfo.renderArea = renderArea;
    [all...]
  /hardware/qcom/display/msm8226/libhwcomposer/
hwc_copybit.cpp 99 unsigned int renderArea = getRGBRenderingArea(list);
100 ALOGD_IF (DEBUG_COPYBIT, "%s:renderArea %u, fbArea %u",
101 __FUNCTION__, renderArea, fbArea);
102 if (renderArea < (mDynThreshold * fbArea)) {
118 unsigned int renderArea = 0;
127 renderArea += (w*h);
131 return renderArea;
    [all...]
  /hardware/qcom/display/msm8994/libhwcomposer/
hwc_copybit.cpp 99 unsigned int renderArea = getRGBRenderingArea(ctx, list);
100 ALOGD_IF (DEBUG_COPYBIT, "%s:renderArea %u, fbArea %u",
101 __FUNCTION__, renderArea, fbArea);
102 if (renderArea < (mDynThreshold * fbArea)) {
118 unsigned int renderArea = 0;
127 renderArea += (w*h);
131 return renderArea;
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiGranularityTests.cpp 321 const VkRect2D renderArea =
333 renderArea, // VkRect2D renderArea;
  /external/deqp/external/vulkancts/modules/vulkan/tessellation/
vktTessellationGeometryPointSizeTests.cpp 372 const VkRect2D renderArea = {
378 beginRenderPass(vk, *cmdBuffer, *renderPass, *framebuffer, renderArea, clearColor);
vktTessellationUtil.cpp 291 const VkRect2D& renderArea,
301 renderArea, // VkRect2D renderArea;
314 const VkRect2D renderArea = {{ 0, 0 }, { 0, 0 }};
321 renderArea, // VkRect2D renderArea;
    [all...]
vktTessellationCommonEdgeTests.cpp 402 const VkRect2D renderArea = {
408 beginRenderPass(vk, *cmdBuffer, *renderPass, *framebuffer, renderArea, clearColor);
vktTessellationGeometryGridRenderTests.cpp 585 const VkRect2D renderArea = {
591 beginRenderPass(vk, *cmdBuffer, *renderPass, *framebuffer, renderArea, clearColor);
  /hardware/qcom/display/msm8909/libhwcomposer/
hwc_copybit.cpp 148 unsigned int renderArea = getRGBRenderingArea(ctx, list);
149 ALOGD_IF (DEBUG_COPYBIT, "%s:renderArea %u, fbArea %u",
150 __FUNCTION__, renderArea, fbArea);
155 if (renderArea < (dynThreshold * fbArea)) {
171 unsigned int renderArea = 0;
180 renderArea += (w*h);
184 return renderArea;
    [all...]

Completed in 596 milliseconds

1 2 3 4