• Home
  • History
  • Annotate
  • Raw
  • Download

Lines Matching refs:bufferValue

684 		Byte8 bufferValue = *Pointer<Byte8>(buffer);  in writeStencil()  local
687 …stencilOperation(newValue, bufferValue, state.stencilPassOperation, state.stencilZFailOperation, s… in writeStencil()
691 Byte8 maskedValue = bufferValue; in writeStencil()
701 …stencilOperation(newValueCCW, bufferValue, state.stencilPassOperationCCW, state.stencilZFailOperat… in writeStencil()
705 Byte8 maskedValue = bufferValue; in writeStencil()
717 bufferValue &= *Pointer<Byte8>(constants + OFFSET(Constants,invMaskB4Q) + 8 * cMask); in writeStencil()
718 newValue |= bufferValue; in writeStencil()
723 …void PixelRoutine::stencilOperation(Byte8 &newValue, Byte8 &bufferValue, VkStencilOp stencilPassOp… in stencilOperation() argument
729 stencilOperation(pass, bufferValue, stencilPassOperation, CCW); in stencilOperation()
733 stencilOperation(zFail, bufferValue, stencilZFailOperation, CCW); in stencilOperation()
738 stencilOperation(fail, bufferValue, stencilFailOperation, CCW); in stencilOperation()
756 …void PixelRoutine::stencilOperation(Byte8 &output, Byte8 &bufferValue, VkStencilOp operation, bool… in stencilOperation() argument
761 output = bufferValue; in stencilOperation()
770 output = AddSat(bufferValue, Byte8(1, 1, 1, 1, 1, 1, 1, 1)); in stencilOperation()
773 output = SubSat(bufferValue, Byte8(1, 1, 1, 1, 1, 1, 1, 1)); in stencilOperation()
776 output = bufferValue ^ Byte8(0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF); in stencilOperation()
779 output = bufferValue + Byte8(1, 1, 1, 1, 1, 1, 1, 1); in stencilOperation()
782 output = bufferValue - Byte8(1, 1, 1, 1, 1, 1, 1, 1); in stencilOperation()