HomeSort by relevance Sort by last modified time
    Searched refs:stencilOperation (Results 1 - 2 of 2) sorted by null

  /external/swiftshader/src/Shader/
PixelRoutine.hpp 74 void stencilOperation(Byte8 &newValue, Byte8 &bufferValue, StencilOperation stencilPassOperation, StencilOperation stencilZFailOperation, StencilOperation stencilFailOperation, bool CCW, Int &zMask, Int &sMask);
75 void stencilOperation(Byte8 &output, Byte8 &bufferValue, StencilOperation operation, bool CCW);
PixelRoutine.cpp 768 stencilOperation(newValue, bufferValue, state.stencilPassOperation, state.stencilZFailOperation, state.stencilFailOperation, false, zMask, sMask);
782 stencilOperation(newValueCCW, bufferValue, state.stencilPassOperationCCW, state.stencilZFailOperationCCW, state.stencilFailOperationCCW, true, zMask, sMask);
804 void PixelRoutine::stencilOperation(Byte8 &newValue, Byte8 &bufferValue, StencilOperation stencilPassOperation, StencilOperation stencilZFailOperation, StencilOperation stencilFailOperation, bool CCW, Int &zMask, Int &sMask)
810 stencilOperation(pass, bufferValue, stencilPassOperation, CCW);
814 stencilOperation(zFail, bufferValue, stencilZFailOperation, CCW);
819 stencilOperation(fail, bufferValue, stencilFailOperation, CCW);
837 void PixelRoutine::stencilOperation(Byte8 &output, Byte8 &bufferValue, StencilOperation operation, bool CCW
    [all...]

Completed in 3120 milliseconds