Home | History | Annotate | Download | only in video_decode

Lines Matching defs:texture_target

45   GLenum texture_target;
81 uint32_t texture_target);
104 uint32_t texture_target);
136 GLuint CreateTexture(int32_t width, int32_t height, GLenum texture_target);
360 uint32_t texture_target) {
363 client->ProvidePictureBuffers(req_num_of_bufs, dimensions, texture_target);
369 uint32_t texture_target) {
374 info.texture_target = texture_target;
376 dimensions.width, dimensions.height, info.texture_target);
428 if (info.texture_target == GL_TEXTURE_2D) {
434 assert(info.texture_target == GL_TEXTURE_RECTANGLE_ARB);
449 context_->pp_resource(), info.texture_target, info.buffer.texture_id);
537 GLenum texture_target) {
543 gles2_if_->BindTexture(context_->pp_resource(), texture_target, texture_id);
545 context_->pp_resource(), texture_target, GL_TEXTURE_MIN_FILTER,
548 context_->pp_resource(), texture_target, GL_TEXTURE_MAG_FILTER,
551 context_->pp_resource(), texture_target, GL_TEXTURE_WRAP_S,
554 context_->pp_resource(), texture_target, GL_TEXTURE_WRAP_T,
557 if (texture_target == GL_TEXTURE_2D) {
559 context_->pp_resource(), texture_target, 0, GL_RGBA, width, height, 0,