HomeSort by relevance Sort by last modified time
    Searched refs:texTarget (Results 1 - 22 of 22) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLFramebuffer.h 71 void setAttachmentForBoundFramebuffer(GC3Denum attachment, GC3Denum texTarget, WebGLTexture*, GC3Dint level);
WebGLFramebuffer.cpp 301 void WebGLFramebuffer::setAttachmentForBoundFramebuffer(GC3Denum attachment, GC3Denum texTarget, WebGLTexture* texture, GC3Dint level)
308 m_attachments.add(attachment, WebGLTextureAttachment::create(texture, texTarget, level));
  /device/generic/goldfish/opengl/system/egl/
egl.cpp 188 void setTextureTarget(EGLint _texTarget) { texTarget = _texTarget; }
189 EGLint getTextureTarget() { return texTarget; }
198 EGLint texTarget;
214 texTarget = EGL_NO_TEXTURE;
652 EGLint texTarget = EGL_NO_TEXTURE;
665 texTarget = attrib_list[1];
672 if (((texFormat == EGL_NO_TEXTURE)&&(texTarget != EGL_NO_TEXTURE)) ||
673 ((texFormat != EGL_NO_TEXTURE)&&(texTarget == EGL_NO_TEXTURE))) {
690 surface->setTextureTarget(texTarget);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
nvfragparse.c 571 GLubyte *texUnit, GLubyte *texTarget)
595 *texTarget = TEXTURE_1D_INDEX;
598 *texTarget = TEXTURE_2D_INDEX;
601 *texTarget = TEXTURE_3D_INDEX;
604 *texTarget = TEXTURE_CUBE_INDEX;
607 *texTarget = TEXTURE_RECT_INDEX;
614 parseState->texturesUsed[*texUnit] |= (1 << *texTarget);
    [all...]
program_parse.y 224 %type <integer> texImageUnit texTarget
417 SAMPLE_instruction: SAMPLE_OP maskedDstReg ',' swizzleSrcReg ',' texImageUnit ',' texTarget
476 TXD_instruction: TXD_OP maskedDstReg ',' swizzleSrcReg ',' swizzleSrcReg ',' swizzleSrcReg ',' texImageUnit ',' texTarget
526 texTarget: TEX_1D { $$ = TEXTURE_1D_INDEX; }
    [all...]
  /external/mesa3d/src/mesa/program/
nvfragparse.c 571 GLubyte *texUnit, GLubyte *texTarget)
595 *texTarget = TEXTURE_1D_INDEX;
598 *texTarget = TEXTURE_2D_INDEX;
601 *texTarget = TEXTURE_3D_INDEX;
604 *texTarget = TEXTURE_CUBE_INDEX;
607 *texTarget = TEXTURE_RECT_INDEX;
614 parseState->texturesUsed[*texUnit] |= (1 << *texTarget);
    [all...]
program_parse.y 224 %type <integer> texImageUnit texTarget
417 SAMPLE_instruction: SAMPLE_OP maskedDstReg ',' swizzleSrcReg ',' texImageUnit ',' texTarget
476 TXD_instruction: TXD_OP maskedDstReg ',' swizzleSrcReg ',' swizzleSrcReg ',' swizzleSrcReg ',' texImageUnit ',' texTarget
526 texTarget: TEX_1D { $$ = TEXTURE_1D_INDEX; }
    [all...]
  /sdk/emulator/opengl/host/libs/Translator/EGL/
EglWindowsApi.cpp 475 EGLint width,height,largest,texTarget,texFormat;
477 pbSurface->getTexInfo(&texTarget,&texFormat);
480 int wglTexTarget = (texTarget == EGL_TEXTURE_2D)? WGL_TEXTURE_2D_ARB:
EglImp.cpp 526 EGLint width,height,largest,texTarget,texFormat;
529 tmpPbSurfacePtr->getTexInfo(&texTarget,&texFormat);
531 if(!EglValidate::pbufferAttribs(width,height,texFormat == EGL_NO_TEXTURE,texTarget == EGL_NO_TEXTURE)) {
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
fbobject.h 101 GLenum texTarget, GLuint level, GLuint zoffset);
175 GLenum textarget, GLuint texture, GLint level);
179 GLenum textarget, GLuint texture, GLint level);
183 GLenum textarget, GLuint texture,
texstate.c 597 gl_texture_index texTarget;
601 texTarget = (gl_texture_index) (ffs(enabledTargets) - 1);
602 texObj = _mesa_get_fallback_texture(ctx, texTarget);
611 texUnit->_ReallyEnabled = 1 << texTarget;
ff_fragment_shader.cpp 919 const GLuint texTarget = p->state->unit[unit].source_index;
947 switch (texTarget) {
    [all...]
fbobject.c 333 GLenum texTarget, GLuint level, GLuint zoffset)
353 att->CubeMapFace = _mesa_tex_target_to_face(texTarget);
    [all...]
  /external/mesa3d/src/mesa/main/
fbobject.h 101 GLenum texTarget, GLuint level, GLuint zoffset);
175 GLenum textarget, GLuint texture, GLint level);
179 GLenum textarget, GLuint texture, GLint level);
183 GLenum textarget, GLuint texture,
texstate.c 597 gl_texture_index texTarget;
601 texTarget = (gl_texture_index) (ffs(enabledTargets) - 1);
602 texObj = _mesa_get_fallback_texture(ctx, texTarget);
611 texUnit->_ReallyEnabled = 1 << texTarget;
ff_fragment_shader.cpp 919 const GLuint texTarget = p->state->unit[unit].source_index;
947 switch (texTarget) {
    [all...]
fbobject.c 333 GLenum texTarget, GLuint level, GLuint zoffset)
353 att->CubeMapFace = _mesa_tex_target_to_face(texTarget);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/common/
meta.c     [all...]
  /external/mesa3d/src/mesa/drivers/common/
meta.c     [all...]
  /frameworks/native/libs/gui/
GLConsumer.cpp 120 uint32_t texTarget, bool useFenceSync, bool isControlledByApp) :
132 mTexTarget(texTarget),
    [all...]
  /external/chromium_org/third_party/mesa/src/docs/
MESA_texture_array.spec 488 <texTarget> ::= "1D"
511 option, the <texTarget> rule is modified to add the texture targets
530 enum texTarget);
533 are used by all texture targets. Component usage for each <texTarget>
537 texTarget Texture Type s t r layer shadow
552 Table X: Texture types accessed for each of the <texTarget>, and
585 FramebufferTexture3D, no <textarget> parameter is accepted.
    [all...]
  /external/mesa3d/docs/
MESA_texture_array.spec 488 <texTarget> ::= "1D"
511 option, the <texTarget> rule is modified to add the texture targets
530 enum texTarget);
533 are used by all texture targets. Component usage for each <texTarget>
537 texTarget Texture Type s t r layer shadow
552 Table X: Texture types accessed for each of the <texTarget>, and
585 FramebufferTexture3D, no <textarget> parameter is accepted.
    [all...]

Completed in 316 milliseconds