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

/external/chromium_org/gpu/command_buffer/client/
H A Dprogram_info_manager.cc445 const Program::VertexAttrib* attrib_info = local
447 if (attrib_info) {
449 *size = attrib_info->size;
452 *type = attrib_info->type;
457 attrib_info->name.size()));
462 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.cc901 const Program::VertexAttrib* attrib_info = local
903 ASSERT_TRUE(attrib_info != NULL);
905 attrib_info->name);
907 EXPECT_EQ(it->first, attrib_info->name);
908 EXPECT_EQ(static_cast<GLenum>(it->second.type), attrib_info->type);
909 EXPECT_EQ(it->second.size, attrib_info->size);
910 EXPECT_EQ(it->second.name, attrib_info->name);
H A Dgles2_cmd_decoder.cc6306 const Program::VertexAttrib* attrib_info = local
6316 if (attrib_info &&
6356 const Program::VertexAttrib* attrib_info = local
6366 if (attrib_info &&
8928 const Program::VertexAttrib* attrib_info = local
8930 if (!attrib_info) {
8936 result->size = attrib_info->size;
8937 result->type = attrib_info->type;
8939 bucket->SetFromString(attrib_info->name.c_str());

Completed in 141 milliseconds