Screen scale quality types

Types of scaling qualities.

Synopsis:

#include <screen/screen.h>
 
 enum {
      SCREEN_QUALITY_NORMAL = 0   
      SCREEN_QUALITY_FASTEST = 1   
      SCREEN_QUALITY_NICEST = 2   
};

Data:

SCREEN_QUALITY_NORMAL
The suggested amount of filtering that is slower than SCALE_QUALITY_FASTEST, but should have better quality.
SCREEN_QUALITY_FASTEST
The suggested amount of filtering that is faster than SCALE_QUALITY_NORMAL, but may have reduced quality.
SCREEN_QUALITY_NICEST
The suggested amount of filtering that is slower than SCALE_QUALITY_NORMAL, but should have better quality.

Library:

libscreen

Description:

Each enumerator specifies the suggested amount of filtering to be performed by the windowing system when scaling is required to draw the window. This amount of filtering is not a constant quantity; it is specfied relative to each of the other possible scale qualities.