blob: 2cf8fe3ae53a406ec3e708afb5f782075067e49e [file] [log] [blame]
/*
* Copyright 2015 Google Inc. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "cobalt/renderer/renderer_module.h"
#include "cobalt/renderer/rasterizer/egl/software_rasterizer.h"
#include "cobalt/renderer/rasterizer/skia/hardware_rasterizer.h"
namespace cobalt {
namespace renderer {
namespace {
scoped_ptr<rasterizer::Rasterizer> CreateRasterizer(
backend::GraphicsContext* graphics_context) {
const size_t kSurfaceCacheCapacityInBytes = 0;
#if COBALT_FORCE_SOFTWARE_RASTERIZER
return scoped_ptr<rasterizer::Rasterizer>(
new rasterizer::egl::SoftwareRasterizer(graphics_context,
kSurfaceCacheCapacityInBytes));
#else
return scoped_ptr<rasterizer::Rasterizer>(
new rasterizer::skia::SkiaHardwareRasterizer(
graphics_context, kSurfaceCacheCapacityInBytes));
#endif // #if COBALT_FORCE_SOFTWARE_RASTERIZER
}
} // namespace
void RendererModule::Options::SetPerPlatformDefaultOptions() {
create_rasterizer_function = base::Bind(&CreateRasterizer);
}
} // namespace renderer
} // namespace cobalt