Searched refs:srcLevel (Results 1 - 16 of 16) sorted by relevance

/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
H A Dst_texture.c371 struct pipe_resource *src, GLuint srcLevel,
380 if (u_minify(src->width0, srcLevel) != width ||
381 u_minify(src->height0, srcLevel) != height ||
382 u_minify(src->depth0, srcLevel) != depth) {
410 srcLevel,
369 st_texture_image_copy(struct pipe_context *pipe, struct pipe_resource *dst, GLuint dstLevel, struct pipe_resource *src, GLuint srcLevel, GLuint face) argument
H A Dst_gen_mipmap.c217 const uint srcLevel = dstLevel - 1; local
219 = _mesa_get_tex_image(ctx, texObj, target, srcLevel);
H A Dst_texture.h212 struct pipe_resource *src, GLuint srcLevel,
/external/mesa3d/src/mesa/state_tracker/
H A Dst_texture.c371 struct pipe_resource *src, GLuint srcLevel,
380 if (u_minify(src->width0, srcLevel) != width ||
381 u_minify(src->height0, srcLevel) != height ||
382 u_minify(src->depth0, srcLevel) != depth) {
410 srcLevel,
369 st_texture_image_copy(struct pipe_context *pipe, struct pipe_resource *dst, GLuint dstLevel, struct pipe_resource *src, GLuint srcLevel, GLuint face) argument
H A Dst_gen_mipmap.c217 const uint srcLevel = dstLevel - 1; local
219 = _mesa_get_tex_image(ctx, texObj, target, srcLevel);
H A Dst_texture.h212 struct pipe_resource *src, GLuint srcLevel,
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_gen_mipmap.c1110 const uint srcLevel = dstLevel - 1; local
1114 srcTrans = pipe_get_transfer(pipe, pt, srcLevel, layer,
1116 u_minify(pt->width0, srcLevel),
1117 u_minify(pt->height0, srcLevel));
1151 const uint srcLevel = dstLevel - 1; local
1155 srcTrans = pipe_get_transfer(pipe, pt, srcLevel, layer,
1157 u_minify(pt->width0, srcLevel),
1158 u_minify(pt->height0, srcLevel));
1199 const uint srcLevel = dstLevel - 1; local
1203 src_box.width = u_minify(pt->width0, srcLevel);
1610 const uint srcLevel = dstLevel - 1; local
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_gen_mipmap.c1110 const uint srcLevel = dstLevel - 1; local
1114 srcTrans = pipe_get_transfer(pipe, pt, srcLevel, layer,
1116 u_minify(pt->width0, srcLevel),
1117 u_minify(pt->height0, srcLevel));
1151 const uint srcLevel = dstLevel - 1; local
1155 srcTrans = pipe_get_transfer(pipe, pt, srcLevel, layer,
1157 u_minify(pt->width0, srcLevel),
1158 u_minify(pt->height0, srcLevel));
1199 const uint srcLevel = dstLevel - 1; local
1203 src_box.width = u_minify(pt->width0, srcLevel);
1610 const uint srcLevel = dstLevel - 1; local
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/common/
H A Dmeta.c1444 const GLuint srcLevel = readAtt->TextureLevel; local
1480 _mesa_TexParameteri(target, GL_TEXTURE_BASE_LEVEL, srcLevel);
1481 _mesa_TexParameteri(target, GL_TEXTURE_MAX_LEVEL, srcLevel);
1509 = _mesa_select_tex_image(ctx, texObj, target, srcLevel);
2785 GLuint srcLevel; local
2796 srcLevel = texObj->BaseLevel;
2797 baseImage = _mesa_select_tex_image(ctx, texObj, target, srcLevel);
2821 target, texObj->Name, srcLevel);
2829 target, texObj->Name, srcLevel, zoffset);
2836 target, texObj->Name, srcLevel);
3363 const GLuint srcLevel = dstLevel - 1; local
[all...]
/external/mesa3d/src/mesa/drivers/common/
H A Dmeta.c1444 const GLuint srcLevel = readAtt->TextureLevel; local
1480 _mesa_TexParameteri(target, GL_TEXTURE_BASE_LEVEL, srcLevel);
1481 _mesa_TexParameteri(target, GL_TEXTURE_MAX_LEVEL, srcLevel);
1509 = _mesa_select_tex_image(ctx, texObj, target, srcLevel);
2785 GLuint srcLevel; local
2796 srcLevel = texObj->BaseLevel;
2797 baseImage = _mesa_select_tex_image(ctx, texObj, target, srcLevel);
2821 target, texObj->Name, srcLevel);
2829 target, texObj->Name, srcLevel, zoffset);
2836 target, texObj->Name, srcLevel);
3363 const GLuint srcLevel = dstLevel - 1; local
[all...]
/external/chromium_org/third_party/mesa/src/include/GL/
H A Dglxext.h979 extern void glXCopyImageSubDataNV (Display *dpy, GLXContext srcCtx, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLXContext dstCtx, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth);
981 typedef void ( * PFNGLXCOPYIMAGESUBDATANVPROC) (Display *dpy, GLXContext srcCtx, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLXContext dstCtx, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth);
H A Dwglext.h887 extern BOOL WINAPI wglCopyImageSubDataNV (HGLRC hSrcRC, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, HGLRC hDstRC, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth);
889 typedef BOOL (WINAPI * PFNWGLCOPYIMAGESUBDATANVPROC) (HGLRC hSrcRC, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, HGLRC hDstRC, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth);
H A Dglext.h8620 GLAPI void APIENTRY glCopyImageSubData (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth);
8622 typedef void (APIENTRYP PFNGLCOPYIMAGESUBDATAPROC) (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth);
12164 GLAPI void APIENTRY glCopyImageSubDataNV (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth);
12166 typedef void (APIENTRYP PFNGLCOPYIMAGESUBDATANVPROC) (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth);
/external/mesa3d/include/GL/
H A Dglxext.h979 extern void glXCopyImageSubDataNV (Display *dpy, GLXContext srcCtx, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLXContext dstCtx, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth);
981 typedef void ( * PFNGLXCOPYIMAGESUBDATANVPROC) (Display *dpy, GLXContext srcCtx, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLXContext dstCtx, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth);
H A Dwglext.h887 extern BOOL WINAPI wglCopyImageSubDataNV (HGLRC hSrcRC, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, HGLRC hDstRC, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth);
889 typedef BOOL (WINAPI * PFNWGLCOPYIMAGESUBDATANVPROC) (HGLRC hSrcRC, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, HGLRC hDstRC, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth);
H A Dglext.h8620 GLAPI void APIENTRY glCopyImageSubData (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth);
8622 typedef void (APIENTRYP PFNGLCOPYIMAGESUBDATAPROC) (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth);
12164 GLAPI void APIENTRY glCopyImageSubDataNV (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth);
12166 typedef void (APIENTRYP PFNGLCOPYIMAGESUBDATANVPROC) (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth);

Completed in 789 milliseconds