public VectorClipper(CellAARasterizer ras)
 {
     this.ras   = ras;
     clipBox    = new RectInt(0, 0, 0, 0);
     m_x1       = m_y1 = m_f1 = 0;
     m_clipping = false;
 }
Exemplo n.º 2
0
 public VectorClipper(CellAARasterizer ras)
 {
     _ras      = ras;
     _clipBox  = new RectInt(0, 0, 0, 0);
     _x1       = _y1 = _f1 = 0;
     _clipping = false;
 }
Exemplo n.º 3
0
 public VectorClipper(CellAARasterizer ras)
 {
     this.ras = ras;
     clipBox = new RectInt(0, 0, 0, 0);
     m_x1 = m_y1 = m_f1 = 0;
     m_clipping = false;
 }
Exemplo n.º 4
0
            public CellAABlob(CellAARasterizer aaRas)
            {
                _cellAARas = aaRas;
#if DEBUG
                _dbugLockSortCell = false;
#endif
            }
 public GLScanlineRasterizer()
 {
     m_cellAARas     = new CellAARasterizer();
     m_vectorClipper = new VectorClipper(m_cellAARas);
     m_filling_rule  = FillingRule.NonZero;
     m_auto_close    = true;
     mul_start_x     = 0;
     mul_start_y     = 0;
     m_status        = Status.Initial;
     for (int i = AA_SCALE - 1; i >= 0; --i)
     {
         m_gammaLut[i] = i;
     }
 }
Exemplo n.º 6
0
 public ScanlineRasterizer()
 {
     _cellAARas     = new CellAARasterizer();
     _vectorClipper = new VectorClipper(_cellAARas);
     _filling_rule  = FillingRule.NonZero;
     _auto_close    = true;
     _mul_start_x   = 0;
     _mul_start_y   = 0;
     _status        = Status.Initial;
     for (int i = AA_SCALE - 1; i >= 0; --i)
     {
         _orgGammaLut[i] = i;
     }
     _gammaLut           = _orgGammaLut;
     _useDefaultGammaLut = true;
 }
Exemplo n.º 7
0
        //bool _filpY;

        public ScanlineRasterizer(int w, int h)
        {
            this._renderSurfaceW = w;
            this._renderSurfaceH = h;
            //_filpY = true;

            m_cellAARas     = new CellAARasterizer();
            m_vectorClipper = new VectorClipper(m_cellAARas);
            m_filling_rule  = FillingRule.NonZero;
            m_auto_close    = true;
            mul_start_x     = 0;
            mul_start_y     = 0;
            m_status        = Status.Initial;
            for (int i = AA_SCALE - 1; i >= 0; --i)
            {
                m_gammaLut[i] = i;
            }
        }
 public ScanlineRasterizer()
 {
     m_cellAARas = new CellAARasterizer();
     m_vectorClipper = new VectorClipper(m_cellAARas);
     m_filling_rule = FillingRule.NonZero;
     m_auto_close = true;
     mul_start_x = 0;
     mul_start_y = 0;
     m_status = Status.Initial;
     for (int i = AA_SCALE - 1; i >= 0; --i)
     {
         m_gammaLut[i] = i;
     }
 }