OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:pos_location
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/media/tools/player_x11/
gl_video_renderer.cc
229
int
pos_location
= glGetAttribLocation(program, "in_pos");
local
230
glEnableVertexAttribArray(
pos_location
);
231
glVertexAttribPointer(
pos_location
, 2, GL_FLOAT, GL_FALSE, 0, kVertices);
/external/chromium_org/content/common/gpu/media/
rendering_helper.cc
380
int
pos_location
= glGetAttribLocation(program_, "in_pos");
local
381
glEnableVertexAttribArray(
pos_location
);
382
glVertexAttribPointer(
pos_location
, 2, GL_FLOAT, GL_FALSE, 0, kVertices);
/external/chromium_org/ppapi/examples/video_capture/
video_capture.cc
391
GLint
pos_location
= gles2_if_->GetAttribLocation(
local
396
gles2_if_->EnableVertexAttribArray(context,
pos_location
);
397
gles2_if_->VertexAttribPointer(context,
pos_location
, 2,
/external/chromium_org/ppapi/examples/video_decode/
video_decode.cc
651
GLint
pos_location
= gles2_if_->GetAttribLocation(
local
657
gles2_if_->EnableVertexAttribArray(context_->pp_resource(),
pos_location
);
658
gles2_if_->VertexAttribPointer(context_->pp_resource(),
pos_location
, 2,
Completed in 139 milliseconds