blob: 96fb2c2e86ce92eb97bca0f619ce38e0803b744a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/usr/bin/env python
#
# Testing the r500 DRI driver
#
import os
import re
execfile(os.path.dirname(__file__) + '/radeon.tests')
from framework.core import *
from framework.gleantest import *
# glean/blendFunc
# R500 blending hardware appears to be a bit better than R300
env = profile.tests['glean']['blendFunc'].env
env['GLEAN_BLEND_RGB_TOLERANCE'] = 1.35
env['GLEAN_BLEND_ALPHA_TOLERANCE'] = 1.35
|