radeon/r200: enable all the optional drm support bits

This commit is contained in:
Dave Airlie 2009-05-05 10:51:44 +10:00
parent 0b22615c2c
commit f616995e5e

View file

@ -1073,6 +1073,15 @@ radeonCreateScreen2(__DRIscreenPrivate *sPriv)
screen->kernel_mm = 1;
screen->chip_flags = 0;
/* if we have kms we can support all of these */
screen->drmSupportsCubeMapsR200 = 1;
screen->drmSupportsBlendColor = 1;
screen->drmSupportsTriPerf = 1;
screen->drmSupportsFragShader = 1;
screen->drmSupportsPointSprites = 1;
screen->drmSupportsCubeMapsR100 = 1;
screen->drmSupportsVertexProgram = 1;
ret = radeonGetParam(sPriv, RADEON_PARAM_IRQ_NR, &screen->irq);
ret = radeonGetParam(sPriv, RADEON_PARAM_DEVICE_ID, &device_id);