Index: content/common/gpu/client/gpu_memory_buffer_impl_android.cc |
diff --git a/content/common/gpu/client/gpu_memory_buffer_impl_android.cc b/content/common/gpu/client/gpu_memory_buffer_impl_android.cc |
index cc82b06c41d3bd4f8f0d166b316caccd171a0422..93f5558410813a46c3b9cd6b900e504fa50fafcb 100644 |
--- a/content/common/gpu/client/gpu_memory_buffer_impl_android.cc |
+++ b/content/common/gpu/client/gpu_memory_buffer_impl_android.cc |
@@ -14,8 +14,8 @@ namespace content { |
void GpuMemoryBufferImpl::GetSupportedTypes( |
std::vector<gfx::GpuMemoryBufferType>* types) { |
const gfx::GpuMemoryBufferType supported_types[] = { |
- gfx::SURFACE_TEXTURE_BUFFER, |
- gfx::SHARED_MEMORY_BUFFER |
+ gfx::SHARED_MEMORY_BUFFER, |
+ gfx::SURFACE_TEXTURE_BUFFER |
piman
2014/11/19 02:39:40
I would prefer having the decision about the types
reveman
2014/11/20 00:53:02
I think my other refactor will result in what you'
|
}; |
types->assign(supported_types, supported_types + arraysize(supported_types)); |
} |