Lines Matching refs:Scope
37 enum class Scope {
44 GrGLSLVarying(GrSLType type, Scope scope = Scope::kVertToFrag)
51 void reset(GrSLType type, Scope scope = Scope::kVertToFrag) {
60 Scope scope() const { return fScope; }
61 bool isInVertexShader() const { return Scope::kGeoToFrag != fScope; }
62 bool isInFragmentShader() const { return Scope::kVertToGeo != fScope; }
79 Scope fScope = Scope::kVertToFrag;