summaryrefslogtreecommitdiffstats
path: root/o3d/gpu_plugin/gpu_processor_win.cc
diff options
context:
space:
mode:
Diffstat (limited to 'o3d/gpu_plugin/gpu_processor_win.cc')
-rw-r--r--o3d/gpu_plugin/gpu_processor_win.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/o3d/gpu_plugin/gpu_processor_win.cc b/o3d/gpu_plugin/gpu_processor_win.cc
index a765ff94..8ab8b30 100644
--- a/o3d/gpu_plugin/gpu_processor_win.cc
+++ b/o3d/gpu_plugin/gpu_processor_win.cc
@@ -16,14 +16,14 @@ GPUProcessor::GPUProcessor(NPP npp,
commands_per_update_(100) {
DCHECK(command_buffer);
gapi_.reset(new GPUGAPIInterface);
- decoder_.reset(new command_buffer::GAPIDecoder(gapi_.get()));
+ decoder_.reset(new command_buffer::o3d::GAPIDecoder(gapi_.get()));
decoder_->set_engine(this);
}
GPUProcessor::GPUProcessor(NPP npp,
CommandBuffer* command_buffer,
GPUGAPIInterface* gapi,
- command_buffer::GAPIDecoder* decoder,
+ command_buffer::o3d::GAPIDecoder* decoder,
command_buffer::CommandParser* parser,
int commands_per_update)
: npp_(npp),