Package com.neophob.sematrix.core.generator

Source Code of com.neophob.sematrix.core.generator.VisualZero

/**
* Copyright (C) 2011-2013 Michael Vogt <michu@neophob.com>
*
* This file is part of PixelController.
*
* PixelController is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* PixelController is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with PixelController.  If not, see <http://www.gnu.org/licenses/>.
*/
package com.neophob.sematrix.core.generator;

import com.neophob.sematrix.core.glue.Collector;
import com.neophob.sematrix.core.glue.MatrixData;
import com.neophob.sematrix.core.glue.Visual;
import com.neophob.sematrix.core.resize.Resize.ResizeName;


/**
* Get content from first visual.
*/
public class VisualZero extends Generator

  /**
   * @param controller the controller
   */
  public VisualZero(MatrixData matrix) {
    super(matrix, GeneratorName.VISUAL_ZERO, ResizeName.QUALITY_RESIZE)
  }

  /* (non-Javadoc)
   * @see com.neophob.sematrix.core.generator.Generator#update()
   */
  @Override
  public void update() {
    Visual visual = Collector.getInstance().getVisual(0);
      this.internalBuffer = visual.getMixer().getBuffer(visual);
  }

}
TOP

Related Classes of com.neophob.sematrix.core.generator.VisualZero

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.