| Index: gpu/command_buffer/client/gles2_demo.cc
|
| diff --git a/gpu/command_buffer/client/gles2_demo.cc b/gpu/command_buffer/client/gles2_demo.cc
|
| index 974f18717c345c31593b5dc14e1b758f92a207d6..66e90266190914aa67c9b1982331062cca6a053b 100644
|
| --- a/gpu/command_buffer/client/gles2_demo.cc
|
| +++ b/gpu/command_buffer/client/gles2_demo.cc
|
| @@ -64,7 +64,7 @@ bool GLES2Demo::Setup(void* hwnd, int32 size) {
|
| if (!command_buffer->Initialize(size))
|
| return NULL;
|
|
|
| - gpu::gles2::ContextGroup::Ref group(new gpu::gles2::ContextGroup());
|
| + gpu::gles2::ContextGroup::Ref group(new gpu::gles2::ContextGroup(true));
|
| GpuScheduler* gpu_scheduler = GpuScheduler::Create(command_buffer.get(),
|
| NULL,
|
| group.get());
|
| @@ -101,7 +101,8 @@ bool GLES2Demo::Setup(void* hwnd, int32 size) {
|
| transfer_buffer.size,
|
| transfer_buffer.ptr,
|
| transfer_buffer_id,
|
| - false));
|
| + false,
|
| + true));
|
|
|
| GLFromCPPInit();
|
|
|
|
|