•  Back 
  •  VDI FONTGDOS 
  •  Index 
  •  Tree View 
  •  Cross references 
  •  %About 
  •  Show info about hypertext 
  •  View a new file 
Topic       : The ATARI Compendium
Author      : Scott Sanders / JAY Software
Version     : 1.25 (20/6/2003)
Subject     : Documentation
Nodes       : 1117
Index Size  : 32614
HCP-Version : 6
Compiled on : Atari
@charset    : UTF-8
@lang       : en
@default    : 
@help       : %About
@options    : +g -i -t4 +y +z
@width      : 100
View Ref-Filev_bez()
v_bez_fill()
v_bez_on()
v_bez_qual()                                                            VDI

Syntax

VOID v_bez_qual( handle, percent, actual )
WORD handle, percent;
WORD *actual;

Function      v_bez_qual() sets the speed/quality ratio of the bezier
              curve rendering engine.

Opcode        5

Sub-Opcode    99

Availability  Available only with FONTGDOS, FSM, or SpeedoGDOS.

Parameters    handle specifies a valid workstation handle. percent is
              a value (0-100) specifying the tradeoff between bezier
              quality and speed. A value of 0 renders a bezier fastest
              with the lowest quality while a value of 100 renders
              a bezier slowest with the highest possible quality. On
              return, the WORD pointed to by actual will contain the
              actual value used.

Binding       contrl[0] = 5;
              contrl[1] = 0;
              contrl[3] = 3;
              contrl[5] = 99;
              contrl[6] = handle;

              intin[0] = 32;
              intin[1] = 1;
              intin[2] = percent;

              vdi();

              *actual = intout[0];

Comments      actual may not be an exact percentage as the rendering
              engine may not actually support every value possible between
              1-99.

See Also      v_bez(), v_bez_fill(), v_bez_on()

Group         VDI FONTGDOS