mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-27 01:50:10 +01:00
i965: Enable native ETC texture support on Broadwell.
Broadwell, like Baytrail, has native ETC texture support. Signed-off-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Eric Anholt <eric@anholt.net>
This commit is contained in:
parent
fa772aa92b
commit
8618407d15
1 changed files with 1 additions and 1 deletions
|
|
@ -501,7 +501,7 @@ intel_miptree_create(struct brw_context *brw,
|
|||
gl_format etc_format = MESA_FORMAT_NONE;
|
||||
GLuint total_width, total_height;
|
||||
|
||||
if (!brw->is_baytrail) {
|
||||
if (brw->gen < 8 && !brw->is_baytrail) {
|
||||
switch (format) {
|
||||
case MESA_FORMAT_ETC1_RGB8:
|
||||
format = MESA_FORMAT_RGBX8888_REV;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue