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

  /external/skia/src/gpu/
GrDrawTarget.h 59 typedef GrDrawState::StageMask StageMask;
98 StageMask stageMask = this->enabledStages();
99 this->drawState()->preConcatSamplerMatrices(stageMask, matrix);
486 * @param stageMask bitmask indicating which stages are enabled.
501 StageMask stageMask,
511 StageMask stageEnableBitfield) {
559 AutoDeviceCoordDraw(GrDrawTarget* target, StageMask stageMask)
    [all...]
GrDrawState.h 46 typedef uint32_t StageMask;
47 GR_STATIC_ASSERT(sizeof(StageMask)*8 >= GrDrawState::kNumStages);
217 void preConcatSamplerMatrices(StageMask stageMask, const GrMatrix& matrix) {
218 GrAssert(!(stageMask & kIllegalStageMaskBits));
220 if ((1 << i) & stageMask) {
773 static const StageMask kIllegalStageMaskBits = ~((1 << kNumStages)-1);

Completed in 41 milliseconds