コード例 #1
0
ファイル: radeon_probe.c プロジェクト: RAOF/xf86-video-ati
/* Return the string name for supported chipset 'n'; NULL otherwise. */
static void
RADEONIdentify(int flags)
{
    xf86PrintChipsets(RADEON_NAME,
		      "Driver for ATI Radeon chipsets",
		      RADEONChipsets);
}
コード例 #2
0
ファイル: nsc_driver.c プロジェクト: gvsurenderreddy/theqvd
/*-------------------------------------------------------------------------
 * NscIdentify.
 *
 * Description  :	This function identify an Nscfamily version.
 *
 *
 * Parameters.
 *    flags		:	flags may be used in PreInit*
 *
 * Returns		: 	none
 *
 * Comments     : 	none
 *
*------------------------------------------------------------------------
*/
static void
NscIdentify(int flags)
{
   xf86PrintChipsets(NSC_NAME,
		     "Nsc family driver (version " NSC_VERSION_NAME ") "
		     "for chipsets", GeodeChipsets);
}
コード例 #3
0
/*
 * ATIIdentify --
 *
 * Print the driver's list of chipset names.
 */
void
ATIIdentify
(
    int flags
)
{
    xf86PrintChipsets(ATI_NAME,
        (NumberOf(ATIPublicChipsetNames) <= 2) ?
            "ATI driver (version " ATI_VERSION_NAME ") for chipset" :
            "ATI driver (version " ATI_VERSION_NAME ") for chipsets",
        ATIPublicChipsetNames);
    R128Identify(flags);
    RADEONIdentify(flags);
}
コード例 #4
0
static void
VMWAREIdentify(int flags)
{
    xf86PrintChipsets(VMWARE_NAME, "driver for VMware SVGA", VMWAREChipsets);
}
コード例 #5
0
ファイル: driver.c プロジェクト: colinhect/xf86-video-nested
static void
NestedIdentify(int flags) {
    xf86PrintChipsets(NESTED_NAME, "Driver for nested servers",
                      NestedChipsets);
}
コード例 #6
0
static void
Identify(int flags)
{
    xf86PrintChipsets("modesetting", "Driver for Modesetting Kernel Drivers",
		      Chipsets);
}
static void
TegraIdentify(int flags)
{
    xf86PrintChipsets("opentegra", "Open Source Driver for NVIDIA Tegra",
                      Chipsets);
}
コード例 #8
0
ファイル: vmw_xorg.c プロジェクト: emcmanus/FlashMesa3D
static void
vmw_xorg_identify(int flags)
{
    xf86PrintChipsets("vmwgfx", "Driver for VMware SVGA device",
		      vmw_xorg_chipsets);
}
コード例 #9
0
/* Mandatory */
static void
VoodooIdentify(int flags)
{
  xf86PrintChipsets(VOODOO_NAME, "driver for Voodoo1/Voodoo2", VoodooChipsets);
}
コード例 #10
0
/* Mandatory */
static void
CIRIdentify(int flags)
{
	xf86PrintChipsets(CIR_NAME, "driver for Cirrus chipsets", CIRChipsets);
}
コード例 #11
0
/* Mandatory */
static void
DUMMYIdentify(int flags)
{
    xf86PrintChipsets(DUMMY_NAME, "Driver for Dummy chipsets",
			DUMMYChipsets);
}
コード例 #12
0
ファイル: intel_xorg.c プロジェクト: MaikuMori/mesa
static void
intel_xorg_identify(int flags)
{
    xf86PrintChipsets("modesetting", "Driver for Modesetting Kernel Drivers",
                      intel_xorg_chipsets);
}
コード例 #13
0
ファイル: intel_module.c プロジェクト: sgh/xf86-video-intel
/*
 * intel_identify --
 *
 * Returns the string name for the driver based on the chipset.
 *
 */
static void intel_identify(int flags)
{
	xf86PrintChipsets(INTEL_NAME,
			  "Driver for Intel Integrated Graphics Chipsets",
			  intel_chipsets);
}
コード例 #14
0
ファイル: xorg.c プロジェクト: venkatarajasekhar/Qt
static void
r600_xorg_identify(int flags)
{
    xf86PrintChipsets("r600", "Driver for R6xx Gallium with KMS",
		      r600_xorg_chipsets);
}
コード例 #15
0
ファイル: xorg.c プロジェクト: venkatarajasekhar/Qt
static void
r300_xorg_identify(int flags)
{
    xf86PrintChipsets("r300", "Driver for Radeon Gallium with KMS",
		      r300_xorg_chipsets);
}
/*-------------------------------------------------------------------------
 * AmdIdentify.
 *
 * Description  :	This function identify an Amdfamily version.
 *
 *
 * Parameters.
 *    flags		:	flags may be used in PreInit*
 *
 * Returns		:	none
 *
 * Comments     :	none
 *
*------------------------------------------------------------------------
*/
static void
AmdIdentify(int flags)
{
    xf86PrintChipsets(GEODE_NAME, "Driver for AMD Geode Chipsets",
                      GeodeChipsets);
}