| Summary: | Vtx endian setup error under big endain CPU | ||
|---|---|---|---|
| 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: | unspecified | ||
| Hardware: | PowerPC | ||
| OS: | other | ||
| Whiteboard: | |||
| i915 platform: | i915 features: | ||
Note: classic r600 driver has been abandoned. Please use r600g (gallium driver) instead. Is this still an issue with a newer driver/kernel? The classic r600 driver has been abandoned long ago. It was replaced by the Gallium driver r600g. If you have issues with r600g please file a new bug report with component Drivers/Gallium/r600 Thanks. |
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.
There is an error at line 965 of r700_assembler.c(mesa 7.8.1): vfetch_instruction_ptr->m_Word2.f.endian_swap = SQ_ENDIAN_NONE; the correct must be: vfetch_instruction_ptr->m_Word2.f.endian_swap = #if BIGENDIAN_CPU SQ_ENDIAN_8IN32; #else SQ_ENDIAN_NONE; #endif