Home | History | Annotate | Download | only in gpu

Lines Matching defs:fContext

613             fContext = NULL;
617 fContext = context;
621 if (fContext) {
622 fContext->setRenderTarget(fPrevTarget);
626 GrContext* fContext;
758 GrAutoMatrix() : fContext(NULL) {}
759 GrAutoMatrix(GrContext* ctx) : fContext(ctx) {
762 GrAutoMatrix(GrContext* ctx, const GrMatrix& matrix) : fContext(ctx) {
767 if (NULL != fContext) {
768 fContext->setMatrix(fMatrix);
771 fContext = ctx;
774 if (NULL != fContext) {
775 fContext->setMatrix(fMatrix);
779 fContext = ctx;
782 if (NULL != fContext) {
783 fContext->setMatrix(fMatrix);
788 GrContext* fContext;
800 : fContext(NULL) {
807 : fContext(NULL) {
812 if (NULL != fContext) {
813 fContext->unlockTexture(fEntry);
821 if (NULL != fContext) {
822 fContext->unlockTexture(fEntry);
824 fContext = context;
825 if (NULL != fContext) {
826 fEntry = fContext->lockScratchTexture(desc, match);
829 fContext = NULL;
839 GrContext* fContext;