projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6657a7a
)
r600g: enable dual src blending on r7xx
author
Marek Olšák
<maraeo@gmail.com>
Sat, 7 Jul 2012 07:36:35 +0000
(09:36 +0200)
committer
Marek Olšák
<maraeo@gmail.com>
Mon, 9 Jul 2012 11:57:59 +0000
(13:57 +0200)
No lockups here.
src/gallium/drivers/r600/r600_pipe.c
patch
|
blob
|
history
diff --git
a/src/gallium/drivers/r600/r600_pipe.c
b/src/gallium/drivers/r600/r600_pipe.c
index 435aa7715bae4fc69a015ec4f72ced8b5aa72c80..c4df3a6f0fd5c2fbbd8970f70fb961690b750343 100644
(file)
--- a/
src/gallium/drivers/r600/r600_pipe.c
+++ b/
src/gallium/drivers/r600/r600_pipe.c
@@
-452,7
+452,7
@@
static int r600_get_param(struct pipe_screen* pscreen, enum pipe_cap param)
return 7;
case PIPE_CAP_MAX_DUAL_SOURCE_RENDER_TARGETS:
- return
(family < CHIP_RV770)
? 1 : 0;
+ return
family < CHIP_CEDAR
? 1 : 0;
}
return 0;
}