Home
last modified time | relevance | path

Searched refs:logLength (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/webkit/common/gpu/
Dwebgraphicscontext3d_in_process_command_buffer_impl.cc675 GLint logLength = 0; in DELEGATE_TO_GL_2() local
676 gl_->GetProgramiv(program, GL_INFO_LOG_LENGTH, &logLength); in DELEGATE_TO_GL_2()
677 if (!logLength) in DELEGATE_TO_GL_2()
679 scoped_ptr<GLchar[]> log(new GLchar[logLength]); in DELEGATE_TO_GL_2()
684 program, logLength, &returnedLogLength, log.get()); in DELEGATE_TO_GL_2()
685 DCHECK_EQ(logLength, returnedLogLength + 1); in DELEGATE_TO_GL_2()
699 GLint logLength = 0; in DELEGATE_TO_GL_3() local
700 gl_->GetShaderiv(shader, GL_INFO_LOG_LENGTH, &logLength); in DELEGATE_TO_GL_3()
701 if (!logLength) in DELEGATE_TO_GL_3()
703 scoped_ptr<GLchar[]> log(new GLchar[logLength]); in DELEGATE_TO_GL_3()
[all …]
/external/chromium_org/content/common/gpu/client/
Dwebgraphicscontext3d_command_buffer_impl.cc800 GLint logLength = 0; in DELEGATE_TO_GL_2() local
801 gl_->GetProgramiv(program, GL_INFO_LOG_LENGTH, &logLength); in DELEGATE_TO_GL_2()
802 if (!logLength) in DELEGATE_TO_GL_2()
804 scoped_ptr<GLchar[]> log(new GLchar[logLength]); in DELEGATE_TO_GL_2()
809 program, logLength, &returnedLogLength, log.get()); in DELEGATE_TO_GL_2()
810 DCHECK_EQ(logLength, returnedLogLength + 1); in DELEGATE_TO_GL_2()
823 GLint logLength = 0; in DELEGATE_TO_GL_3() local
824 gl_->GetShaderiv(shader, GL_INFO_LOG_LENGTH, &logLength); in DELEGATE_TO_GL_3()
825 if (!logLength) in DELEGATE_TO_GL_3()
827 scoped_ptr<GLchar[]> log(new GLchar[logLength]); in DELEGATE_TO_GL_3()
[all …]
/external/chromium_org/third_party/angle/src/libGLESv2/
DProgram.cpp115 size_t logLength = strlen(mInfoLog); in append() local
116 char *newLog = new char[logLength + infoLength + 2]; in append()
118 strcpy(newLog + logLength, info); in append()
119 strcpy(newLog + logLength + infoLength, "\n"); in append()
/external/srec/srec/cfront/
Dsp_fft.c136 srfft* new_srfft(unsigned logLength) in new_srfft() argument
141 ASSERT(logLength >= 2); in new_srfft()
144 pthis->m_logLength = logLength; in new_srfft()
145 pthis->m_length = 1 << logLength; in new_srfft()