Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(564)

Unified Diff: content/browser/gpu/gpu_driver_bug_list.cc

Issue 13400003: Use macro to simplify gpu driver bug workaround defs and code. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | gpu/command_buffer/service/feature_info.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/gpu/gpu_driver_bug_list.cc
===================================================================
--- content/browser/gpu/gpu_driver_bug_list.cc (revision 192406)
+++ content/browser/gpu/gpu_driver_bug_list.cc (working copy)
@@ -31,38 +31,9 @@
GpuDriverBugList* list = new GpuDriverBugList();
const DriverBugInfo kFeatureList[] = {
- { gpu::CLEAR_ALPHA_IN_READPIXELS, "clear_alpha_in_readpixels" },
- { gpu::CLEAR_UNIFORMS_BEFORE_PROGRAM_USE,
- "clear_uniforms_before_program_use" },
- { gpu::DELETE_INSTEAD_OF_RESIZE_FBO, "delete_instead_of_resize_fbo" },
- { gpu::DISABLE_ANGLE_FRAMEBUFFER_MULTISAMPLE,
- "disable_angle_framebuffer_multisample" },
- { gpu::DISABLE_DEPTH_TEXTURE, "disable_depth_texture" },
- { gpu::DISABLE_EXT_OCCLUSION_QUERY, "disable_ext_occlusion_query" },
- { gpu::ENABLE_CHROMIUM_FAST_NPOT_MO8_TEXTURES,
- "enable_chromium_fast_npot_mo8_textures" },
- { gpu::EXIT_ON_CONTEXT_LOST, "exit_on_context_lost" },
- { gpu::FLUSH_ON_CONTEXT_SWITCH, "flush_on_context_switch" },
- { gpu::MAX_CUBE_MAP_TEXTURE_SIZE_LIMIT_1024,
- "max_cube_map_texture_size_limit_1024" },
- { gpu::MAX_CUBE_MAP_TEXTURE_SIZE_LIMIT_4096,
- "max_cube_map_texture_size_limit_4096" },
- { gpu::MAX_CUBE_MAP_TEXTURE_SIZE_LIMIT_512,
- "max_cube_map_texture_size_limit_512" },
- { gpu::MAX_TEXTURE_SIZE_LIMIT_4096, "max_texture_size_limit_4096" },
- { gpu::NEEDS_GLSL_BUILT_IN_FUNCTION_EMULATION,
- "needs_glsl_built_in_function_emulation" },
- { gpu::NEEDS_OFFSCREEN_BUFFER_WORKAROUND,
- "needs_offscreen_buffer_workaround" },
- { gpu::RESTORE_SCISSOR_ON_FBO_CHANGE, "restore_scissor_on_fbo_change" },
- { gpu::REVERSE_POINT_SPRITE_COORD_ORIGIN,
- "reverse_point_sprite_coord_origin" },
- { gpu::SET_TEXTURE_FILTER_BEFORE_GENERATING_MIPMAP,
- "set_texture_filter_before_generating_mipmap" },
- { gpu::USE_CLIENT_SIDE_ARRAYS_FOR_STREAM_BUFFERS,
- "use_client_side_arrays_for_stream_buffers" },
- { gpu::USE_CURRENT_PROGRAM_AFTER_SUCCESSFUL_LINK,
- "use_current_program_after_successful_link" }
+#define GPU_OP(type, name) { gpu::type, #name },
+ GPU_DRIVER_BUG_WORKAROUNDS(GPU_OP)
+#undef GPU_OP
};
DCHECK_EQ(static_cast<int>(arraysize(kFeatureList)),
gpu::NUMBER_OF_GPU_DRIVER_BUG_WORKAROUND_TYPES);
« no previous file with comments | « no previous file | gpu/command_buffer/service/feature_info.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698