Lines Matching defs:FragmentOperationState
237 struct FragmentOperationState struct
241 bool scissorTestEnabled;
242 WindowRectangle scissorRectangle;
244 bool stencilTestEnabled;
245 StencilState stencilStates[2]; //!< Indexed with FACETYPE_FRONT and FACETYPE_BACK.
247 bool depthTestEnabled;
248 TestFunc depthFunc;
249 bool depthMask;
251 bool depthBoundsTestEnabled;
252 float minDepthBound;
253 float maxDepthBound;
255 BlendMode blendMode;
258 BlendState blendRGBState;
259 BlendState blendAState;
260 tcu::Vec4 blendColor; //!< Components should be in range [0, 1].
262 BlendEquationAdvanced blendEquationAdvaced;
264 bool sRGBEnabled;
266 bool depthClampEnabled;
268 bool polygonOffsetEnabled;
269 float polygonOffsetFactor;
270 float polygonOffsetUnits;
272 tcu::BVec4 colorMask;
276 int numStencilBits;
278 FragmentOperationState (void) in FragmentOperationState() function