| Index: src/gpu/effects/GrBitmapTextGeoProc.cpp
|
| diff --git a/src/gpu/effects/GrBitmapTextGeoProc.cpp b/src/gpu/effects/GrBitmapTextGeoProc.cpp
|
| index e2ead092ab4e2a7466e665ddf318590f431fab9a..80a8dbd21f25b2711a8f8d9639399e8706eb64b1 100644
|
| --- a/src/gpu/effects/GrBitmapTextGeoProc.cpp
|
| +++ b/src/gpu/effects/GrBitmapTextGeoProc.cpp
|
| @@ -109,12 +109,12 @@ GrBitmapTextGeoProc::GrBitmapTextGeoProc(GrColor color, GrTexture* texture,
|
| , fTextureAccess(texture, params)
|
| , fInColor(NULL) {
|
| this->initClassID<GrBitmapTextGeoProc>();
|
| - fInPosition = &this->addVertexAttrib(GrAttribute("inPosition", kVec2f_GrVertexAttribType));
|
| + fInPosition = &this->addVertexAttrib(Attribute("inPosition", kVec2f_GrVertexAttribType));
|
| if (useColorAttrib) {
|
| - fInColor = &this->addVertexAttrib(GrAttribute("inColor", kVec4ub_GrVertexAttribType));
|
| + fInColor = &this->addVertexAttrib(Attribute("inColor", kVec4ub_GrVertexAttribType));
|
| this->setHasVertexColor();
|
| }
|
| - fInTextureCoords = &this->addVertexAttrib(GrAttribute("inTextureCoords",
|
| + fInTextureCoords = &this->addVertexAttrib(Attribute("inTextureCoords",
|
| kVec2f_GrVertexAttribType));
|
| this->addTextureAccess(&fTextureAccess);
|
| }
|
|
|