Home
last modified time | relevance | path

Searched refs:bufferValue (Results 1 – 7 of 7) sorted by relevance

/external/deqp/external/vulkancts/modules/vulkan/ray_query/
DvktRayQueryDirectionTests.cpp414 float bufferValue = 0.0f; in iterate() local
416 deMemcpy(&bufferValue, bufferAlloc.getHostPtr(), sizeof(bufferValue)); in iterate()
418 if (de::abs(bufferValue - expectedDistance) > kDefaultTolerance) in iterate()
421 …msg << "Result distance (" << bufferValue << ") differs from expected distance (" << expectedDista… in iterate()
/external/deqp/external/vulkancts/modules/vulkan/ray_tracing/
DvktRayTracingDirectionTests.cpp549 float bufferValue = 0.0f; in iterate() local
551 deMemcpy(&bufferValue, bufferAlloc.getHostPtr(), sizeof(bufferValue)); in iterate()
553 if (de::abs(bufferValue - expectedDistance) > kDefaultTolerance) in iterate()
556 …msg << "Result distance (" << bufferValue << ") differs from expected distance (" << expectedDista… in iterate()
/external/swiftshader/src/Shader/
DPixelRoutine.hpp72 …void stencilOperation(Byte8 &newValue, Byte8 &bufferValue, StencilOperation stencilPassOperation, …
73 void stencilOperation(Byte8 &output, Byte8 &bufferValue, StencilOperation operation, bool CCW);
DPixelRoutine.cpp757 Byte8 bufferValue = *Pointer<Byte8>(buffer); in writeStencil() local
760 …stencilOperation(newValue, bufferValue, state.stencilPassOperation, state.stencilZFailOperation, s… in writeStencil()
764 Byte8 maskedValue = bufferValue; in writeStencil()
774 …stencilOperation(newValueCCW, bufferValue, state.stencilPassOperationCCW, state.stencilZFailOperat… in writeStencil()
778 Byte8 maskedValue = bufferValue; in writeStencil()
790 bufferValue &= *Pointer<Byte8>(constants + OFFSET(Constants,invMaskB4Q) + 8 * cMask); in writeStencil()
791 newValue |= bufferValue; in writeStencil()
796 …void PixelRoutine::stencilOperation(Byte8 &newValue, Byte8 &bufferValue, StencilOperation stencilP… in stencilOperation() argument
802 stencilOperation(pass, bufferValue, stencilPassOperation, CCW); in stencilOperation()
806 stencilOperation(zFail, bufferValue, stencilZFailOperation, CCW); in stencilOperation()
[all …]
/external/swiftshader/src/Pipeline/
DPixelRoutine.hpp72 …void stencilOperation(Byte8 &newValue, const Byte8 &bufferValue, const PixelProcessor::States::Ste…
73 void stencilOperation(Byte8 &output, const Byte8 &bufferValue, VkStencilOp operation, bool isBack);
DPixelRoutine.cpp737 Byte8 bufferValue = *Pointer<Byte8>(buffer) & Byte8(-1, -1, 0, 0, 0, 0, 0, 0); in writeStencil() local
738bufferValue = bufferValue | (*Pointer<Byte8>(buffer + pitch - 2) & Byte8(0, 0, -1, -1, 0, 0, 0, 0)… in writeStencil()
740 stencilOperation(newValue, bufferValue, state.frontStencil, false, zMask, sMask); in writeStencil()
744 Byte8 maskedValue = bufferValue; in writeStencil()
752 stencilOperation(newValueBack, bufferValue, state.backStencil, true, zMask, sMask); in writeStencil()
756 Byte8 maskedValue = bufferValue; in writeStencil()
767 bufferValue &= *Pointer<Byte8>(constants + OFFSET(Constants, invMaskB4Q) + 8 * cMask); in writeStencil()
768 newValue |= bufferValue; in writeStencil()
774 void PixelRoutine::stencilOperation(Byte8 &newValue, const Byte8 &bufferValue, const PixelProcessor… in stencilOperation() argument
780 stencilOperation(pass, bufferValue, ops.passOp, isBack); in stencilOperation()
[all …]
/external/deqp/external/vulkancts/modules/vulkan/binding_model/
DvktBindingDescriptorCopyTests.cpp609 } bufferValue; in init() local
611 bufferValue.uintValue = m_id + (arrayIdx * m_numDynamicAreas) + dynamicAreaIdx; in init()
614 bufferValue.floatValue = (float)bufferValue.uintValue; in init()
616 hostPtr[(256 / 4) * (m_numDynamicAreas * arrayIdx + dynamicAreaIdx)] = bufferValue.uintValue; in init()