Searched defs:attrib_info (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/gpu/command_buffer/service/
H A Dvertex_attrib_manager.cc181 const Program::VertexAttrib* attrib_info = local
183 if (attrib_info) {
H A Dprogram_manager_unittest.cc881 const Program::VertexAttrib* attrib_info = local
883 ASSERT_TRUE(attrib_info != NULL);
885 attrib_info->name);
887 EXPECT_EQ(it->first, attrib_info->name);
888 EXPECT_EQ(static_cast<GLenum>(it->second.type), attrib_info->type);
889 EXPECT_EQ(it->second.size, attrib_info->size);
890 EXPECT_EQ(it->second.name, attrib_info->name);
H A Dgles2_cmd_decoder.cc6302 const Program::VertexAttrib* attrib_info = local
6312 if (attrib_info &&
6352 const Program::VertexAttrib* attrib_info = local
6362 if (attrib_info &&
9005 const Program::VertexAttrib* attrib_info = local
9007 if (!attrib_info) {
9013 result->size = attrib_info->size;
9014 result->type = attrib_info->type;
9016 bucket->SetFromString(attrib_info->name.c_str());
/external/chromium_org/gpu/command_buffer/client/
H A Dprogram_info_manager.cc447 const Program::VertexAttrib* attrib_info = local
449 if (attrib_info) {
451 *size = attrib_info->size;
454 *type = attrib_info->type;
459 attrib_info->name.size()));
464 memcpy(name, attrib_info->name.c_str(), max_size);

Completed in 863 milliseconds