| Summary: |
register address overlap make line stipple error |
| Product: |
Mesa
|
Reporter: |
raoxianhong <raoxianhong> |
| Component: |
Drivers/DRI/R600 | Assignee: |
Default DRI bug account <dri-devel> |
| Status: |
RESOLVED
WONTFIX
|
QA Contact: |
|
| Severity: |
normal
|
|
|
| Priority: |
medium
|
|
|
| Version: |
7.11 | |
|
| Hardware: |
Other | |
|
| OS: |
All | |
|
| Whiteboard: |
|
|
i915 platform:
|
|
i915 features:
|
|
| Bug Depends on: |
25764
|
|
|
| Bug Blocks: |
|
|
|
Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.
In file r700_chip.c function r700SendSUState: R600_OUT_BATCH_REGSEQ(PA_SU_POINT_SIZE, 4); R600_OUT_BATCH(r700->PA_SU_POINT_SIZE.u32All); R600_OUT_BATCH(r700->PA_SU_POINT_MINMAX.u32All); R600_OUT_BATCH(r700->PA_SU_LINE_CNTL.u32All); R600_OUT_BATCH(r700->PA_SU_VTX_CNTL.u32All); must be: R600_OUT_BATCH_REGSEQ(PA_SU_POINT_SIZE, 3); R600_OUT_BATCH(r700->PA_SU_POINT_SIZE.u32All); R600_OUT_BATCH(r700->PA_SU_POINT_MINMAX.u32All); R600_OUT_BATCH(r700->PA_SU_LINE_CNTL.u32All); R600_OUT_BATCH_REGVAL(PA_SU_VTX_CNTL, r700->PA_SU_VTX_CNTL.u32All); NOTE: PA_SU_POINT_SIZE ; /* 0xA280 */ PA_SU_POINT_MINMAX ; /* 0xA281 */ PA_SU_LINE_CNTL ; /* 0xA282 */ PA_SU_VTX_CNTL ; /* 0xA302 */ PA_SC_LINE_STIPPLE ; /* 0xA283 */