diff options
Diffstat (limited to 'gpu/command_buffer/client/gles2_demo.cc')
-rw-r--r-- | gpu/command_buffer/client/gles2_demo.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gpu/command_buffer/client/gles2_demo.cc b/gpu/command_buffer/client/gles2_demo.cc index 9224866..05c0003 100644 --- a/gpu/command_buffer/client/gles2_demo.cc +++ b/gpu/command_buffer/client/gles2_demo.cc @@ -56,9 +56,10 @@ bool GLES2Demo::Setup(void* hwnd, int32 size) { if (!command_buffer->Initialize(size)) return NULL; - GPUProcessor* gpu_processor = new GPUProcessor(command_buffer.get()); + GPUProcessor* gpu_processor = new GPUProcessor(command_buffer.get(), NULL); if (!gpu_processor->Initialize(reinterpret_cast<HWND>(hwnd), gfx::Size(), + NULL, std::vector<int32>(), NULL, 0)) { |