Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Xf86 Video Fbturbo
Commits
8ad03c9d
Commit
8ad03c9d
authored
Oct 17, 2013
by
Siarhei Siamashka
Browse files
Fix the 'forgotten else' regression to use NEON on Cortex-A8 again
Signed-off-by:
Siarhei Siamashka
<
siarhei.siamashka@gmail.com
>
parent
e9f978f3
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/cpu_backend.c
View file @
8ad03c9d
...
@@ -312,8 +312,7 @@ cpu_backend_t *cpu_backend_init(uint8_t *uncached_buffer,
...
@@ -312,8 +312,7 @@ cpu_backend_t *cpu_backend_init(uint8_t *uncached_buffer,
/* NEON works better on Cortex-A8 */
/* NEON works better on Cortex-A8 */
ctx
->
blt2d
.
overlapped_blt
=
overlapped_blt_neon
;
ctx
->
blt2d
.
overlapped_blt
=
overlapped_blt_neon
;
}
}
if
(
ctx
->
cpuinfo
->
has_arm_wmmx
)
else
if
(
ctx
->
cpuinfo
->
has_arm_wmmx
)
{
{
/* ARM LDM/STM works better than VFP/WMMX on Marvell PJ4 */
/* ARM LDM/STM works better than VFP/WMMX on Marvell PJ4 */
ctx
->
blt2d
.
overlapped_blt
=
overlapped_blt_arm
;
ctx
->
blt2d
.
overlapped_blt
=
overlapped_blt_arm
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment