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

/external/chromium_org/webkit/common/gpu/
H A Dwebgraphicscontext3d_impl.cc344 GLint max_name_length = -1; local
346 program, GL_ACTIVE_ATTRIBUTE_MAX_LENGTH, &max_name_length);
347 if (max_name_length < 0)
349 scoped_ptr<GLchar[]> name(new GLchar[max_name_length]);
358 program, index, max_name_length, &length, &size, &type, name.get());
370 GLint max_name_length = -1; local
372 program, GL_ACTIVE_UNIFORM_MAX_LENGTH, &max_name_length);
373 if (max_name_length < 0)
375 scoped_ptr<GLchar[]> name(new GLchar[max_name_length]);
384 program, index, max_name_length,
[all...]

Completed in 191 milliseconds