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

/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);
/external/chromium_org/gpu/command_buffer/service/
H A Dvertex_attrib_manager.cc184 const Program::VertexAttrib* attrib_info = local
186 if (attrib_info) {
H A Dprogram_manager_unittest.cc859 const Program::VertexAttrib* attrib_info = local
861 ASSERT_TRUE(attrib_info != NULL);
863 attrib_info->name);
865 EXPECT_EQ(it->first, attrib_info->name);
866 EXPECT_EQ(static_cast<GLenum>(it->second.type), attrib_info->type);
867 EXPECT_EQ(it->second.size, attrib_info->size);
868 EXPECT_EQ(it->second.name, attrib_info->name);
H A Dgles2_cmd_decoder.cc6503 const Program::VertexAttrib* attrib_info = local
6513 if (attrib_info &&
6553 const Program::VertexAttrib* attrib_info = local
6563 if (attrib_info &&
9355 const Program::VertexAttrib* attrib_info = local
9357 if (!attrib_info) {
9363 result->size = attrib_info->size;
9364 result->type = attrib_info->type;
9366 bucket->SetFromString(attrib_info->name.c_str());

Completed in 525 milliseconds