Searched defs:workarounds (Results 1 - 9 of 9) sorted by last modified time

/external/wpa_supplicant_8/hs20/client/
H A Dosu_client.h51 unsigned long int workarounds; member in struct:hs20_osu_client
/external/chromium_org/gpu/command_buffer/service/
H A Dfeature_info.cc69 const std::string& types, FeatureInfo::Workarounds* workarounds) {
70 DCHECK(workarounds);
80 workarounds->name = true; \
88 if (workarounds->max_texture_size_limit_4096)
89 workarounds->max_texture_size = 4096;
90 if (workarounds->max_cube_map_texture_size_limit_4096)
91 workarounds->max_cube_map_texture_size = 4096;
92 if (workarounds->max_cube_map_texture_size_limit_1024)
93 workarounds->max_cube_map_texture_size = 1024;
94 if (workarounds
68 StringToWorkarounds( const std::string& types, FeatureInfo::Workarounds* workarounds) argument
[all...]
H A Dfeature_info.h90 // Constructor with workarounds taken from the current process's CommandLine
93 // Constructor with workarounds taken from |command_line|
116 const Workarounds& workarounds() const { function in class:gpu::gles2::FeatureInfo
H A Dgles2_cmd_decoder.cc129 // TODO(brianderson): Make the following official workarounds.
1610 const FeatureInfo::Workarounds& workarounds() const { function in class:gpu::gles2::GLES2DecoderImpl
1611 return feature_info_->workarounds();
2332 ->workarounds()
2442 feature_info_->workarounds().init_vertex_attributes);
2704 if (feature_info_->workarounds()
2709 if (feature_info_->workarounds().reverse_point_sprite_coord_origin) {
2713 if (feature_info_->workarounds().unbind_fbo_on_context_switch) {
2745 caps.texture_format_etc1 && !workarounds().etc1_power_of_two_only;
2832 if (workarounds()
[all...]
/external/chromium_org/gpu/command_buffer/tests/
H A Dgl_manager.cc297 const gpu::gles2::FeatureInfo::Workarounds& GLManager::workarounds() const { function in class:gpu::GLManager
298 return decoder_->GetContextGroup()->feature_info()->workarounds();
/external/chromium_org/gpu/config/
H A Dgpu_driver_bug_list.cc58 std::set<int>* workarounds, const CommandLine& command_line) {
59 DCHECK(workarounds);
63 // Removing conflicting workarounds.
66 workarounds->erase(FORCE_INTEGRATED_GPU);
67 workarounds->insert(FORCE_DISCRETE_GPU);
70 workarounds->erase(FORCE_DISCRETE_GPU);
71 workarounds->insert(FORCE_INTEGRATED_GPU);
76 workarounds->erase(MAX_CUBE_MAP_TEXTURE_SIZE_LIMIT_512);
77 workarounds->erase(MAX_CUBE_MAP_TEXTURE_SIZE_LIMIT_1024);
78 workarounds
57 AppendWorkaroundsFromCommandLine( std::set<int>* workarounds, const CommandLine& command_line) argument
[all...]
H A Dgpu_driver_bug_list_unittest.cc134 std::set<int> workarounds; local
135 workarounds.insert(EXIT_ON_CONTEXT_LOST);
136 workarounds.insert(INIT_VERTEX_ATTRIBUTES);
137 EXPECT_EQ(2u, workarounds.size());
139 &workarounds, command_line);
140 EXPECT_EQ(3u, workarounds.size());
141 EXPECT_EQ(1u, workarounds.count(DISABLE_MULTISAMPLING));
148 std::set<int> workarounds; local
149 workarounds.insert(EXIT_ON_CONTEXT_LOST);
150 workarounds
[all...]
H A Dgpu_util.cc68 std::set<int> workarounds = list->MakeDecision( local
71 &workarounds, *command_line);
72 if (!workarounds.empty()) {
74 IntSetToString(workarounds));
/external/chromium_org/content/gpu/
H A Dgpu_main.cc134 std::set<int> workarounds; local
135 gpu::StringToFeatureSet(types, &workarounds);
136 if (workarounds.count(gpu::FORCE_DISCRETE_GPU) == 1)
138 else if (workarounds.count(gpu::FORCE_INTEGRATED_GPU) == 1)
276 // Recompute gpu driver bug workarounds - this is specifically useful

Completed in 194 milliseconds