OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:workarounds
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/gpu/config/
gpu_driver_bug_list_unittest.cc
134
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
.insert(FORCE_INTEGRATED_GPU)
[
all
...]
gpu_util.cc
68
std::set<int>
workarounds
= list->MakeDecision(
local
71
&
workarounds
, *command_line);
72
if (!
workarounds
.empty()) {
74
IntSetToString(
workarounds
));
/external/chromium_org/content/gpu/
gpu_main.cc
134
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
/external/chromium_org/gpu/command_buffer/service/
feature_info.h
75
struct
Workarounds
{
76
Workarounds
();
90
// 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
143
// Flags for
Workarounds
.
144
Workarounds
workarounds_;
gles2_cmd_decoder.cc
129
// TODO(brianderson): Make the following official
workarounds
.
756
//
Workarounds
1610
const FeatureInfo::Workarounds&
workarounds
() const {
function in class:gpu::gles2::GLES2DecoderImpl
[
all
...]
/external/chromium_org/gpu/command_buffer/tests/
gl_manager.cc
297
const gpu::gles2::FeatureInfo::
Workarounds
& GLManager::
workarounds
() const {
function in class:gpu::GLManager
298
return decoder_->GetContextGroup()->feature_info()->
workarounds
();
Completed in 223 milliseconds