Searched refs:dimensions (Results 1 - 25 of 81) sorted by relevance

1234

/xsrc/external/mit/MesaLib/dist/src/mesa/main/
H A Dpbo.c68 _mesa_validate_pbo_access(GLuint dimensions, argument
114 start = _mesa_image_offset(dimensions, pack, width, height,
118 end = _mesa_image_offset(dimensions, pack, width, height,
180 _mesa_validate_pbo_source(struct gl_context *ctx, GLuint dimensions, argument
187 assert(dimensions == 1 || dimensions == 2 || dimensions == 3);
189 if (!_mesa_validate_pbo_access(dimensions, unpack, width, height, depth,
223 _mesa_validate_pbo_source_compressed(struct gl_context *ctx, GLuint dimensions, argument
261 GLuint dimensions,
260 _mesa_map_validate_pbo_source(struct gl_context * ctx,GLuint dimensions,const struct gl_pixelstore_attrib * unpack,GLsizei width,GLsizei height,GLsizei depth,GLenum format,GLenum type,GLsizei clientMemSize,const GLvoid * ptr,const char * where) argument
338 _mesa_map_validate_pbo_dest(struct gl_context * ctx,GLuint dimensions,const struct gl_pixelstore_attrib * unpack,GLsizei width,GLsizei height,GLsizei depth,GLenum format,GLenum type,GLsizei clientMemSize,GLvoid * ptr,const char * where) argument
397 _mesa_validate_pbo_teximage(struct gl_context * ctx,GLuint dimensions,GLsizei width,GLsizei height,GLsizei depth,GLenum format,GLenum type,const GLvoid * pixels,const struct gl_pixelstore_attrib * unpack,const char * funcName) argument
439 _mesa_validate_pbo_compressed_teximage(struct gl_context * ctx,GLuint dimensions,GLsizei imageSize,const GLvoid * pixels,const struct gl_pixelstore_attrib * packing,const char * funcName) argument
[all...]
H A Dpbo.h37 _mesa_validate_pbo_access(GLuint dimensions,
50 GLuint dimensions,
67 GLuint dimensions,
79 _mesa_validate_pbo_teximage(struct gl_context *ctx, GLuint dimensions,
87 GLuint dimensions, GLsizei imageSize,
98 _mesa_validate_pbo_source(struct gl_context *ctx, GLuint dimensions,
106 _mesa_validate_pbo_source_compressed(struct gl_context *ctx, GLuint dimensions,
H A Dpixelstore.h63 GLint dimensions,
H A Dtexgetimage.c77 get_tex_depth(struct gl_context *ctx, GLuint dimensions, argument
102 void *dest = _mesa_image_address(dimensions, &ctx->Pack, pixels,
126 get_tex_depth_stencil(struct gl_context *ctx, GLuint dimensions, argument
148 void *dest = _mesa_image_address(dimensions, &ctx->Pack, pixels,
182 get_tex_stencil(struct gl_context *ctx, GLuint dimensions, argument
205 void *dest = _mesa_image_address(dimensions, &ctx->Pack, pixels,
228 get_tex_ycbcr(struct gl_context *ctx, GLuint dimensions, argument
248 void *dest = _mesa_image_address(dimensions, &ctx->Pack, pixels,
314 get_tex_rgba_compressed(struct gl_context *ctx, GLuint dimensions, argument
371 void *dest = _mesa_image_address(dimensions,
431 get_tex_rgba_uncompressed(struct gl_context * ctx,GLuint dimensions,GLint xoffset,GLint yoffset,GLint zoffset,GLsizei width,GLsizei height,GLint depth,GLenum format,GLenum type,GLvoid * pixels,struct gl_texture_image * texImage,GLbitfield transferOps) argument
571 get_tex_rgba(struct gl_context * ctx,GLuint dimensions,GLint xoffset,GLint yoffset,GLint zoffset,GLsizei width,GLsizei height,GLint depth,GLenum format,GLenum type,GLvoid * pixels,struct gl_texture_image * texImage) argument
700 const GLuint dimensions = local in function:_mesa_GetTexSubImage_sw
781 const GLuint dimensions = local in function:get_compressed_texsubimage_sw
1100 const GLuint dimensions = (target == GL_TEXTURE_3D) ? 3 : 2; local in function:pbo_error_check
1641 packed_compressed_size(GLuint dimensions,mesa_format format,GLsizei width,GLsizei height,GLsizei depth,const struct gl_pixelstore_attrib * packing) argument
1677 GLuint dimensions; local in function:getcompressedteximage_error_check
[all...]
H A Dimage.h44 _mesa_image_offset( GLuint dimensions,
51 _mesa_image_address( GLuint dimensions,
H A Dpixelstore.c323 GLint dimensions,
337 if (dimensions > 1 &&
345 if (dimensions > 2 &&
321 _mesa_compressed_pixel_storage_error_check(struct gl_context * ctx,GLint dimensions,const struct gl_pixelstore_attrib * packing,const char * caller) argument
H A Dglformats.h142 unsigned dimensions);
H A Dpack.h85 _mesa_unpack_image(GLuint dimensions,
H A Dteximage.c542 * Return number of dimensions per mipmap level for the given texture target.
677 * and the dimensions.
678 * The dimensions are expected not to include the border.
1801 * \param dimensions texture image dimensions (must be 1, 2 or 3).
1824 GLuint dimensions, GLenum target,
1844 "glTexImage%dD(level=%d)", dimensions, level);
1854 "glTexImage%dD(border=%d)", dimensions, border);
1860 "glTexImage%dD(width, height or depth < 0)", dimensions);
1878 dimensions, _mesa_enum_to_strin
1823 texture_error_check(struct gl_context * ctx,GLuint dimensions,GLenum target,struct gl_texture_object * texObj,GLint level,GLint internalFormat,GLenum format,GLenum type,GLint width,GLint height,GLint depth,GLint border,const GLvoid * pixels) argument
2006 compressed_texture_error_check(struct gl_context * ctx,GLint dimensions,GLenum target,struct gl_texture_object * texObj,GLint level,GLenum internalFormat,GLsizei width,GLsizei height,GLsizei depth,GLint border,GLsizei imageSize,const GLvoid * data) argument
2164 texsubimage_error_check(struct gl_context * ctx,GLuint dimensions,struct gl_texture_object * texObj,GLenum target,GLint level,GLint xoffset,GLint yoffset,GLint zoffset,GLint width,GLint height,GLint depth,GLenum format,GLenum type,const GLvoid * pixels,const char * callerName) argument
2288 copytexture_error_check(struct gl_context * ctx,GLuint dimensions,GLenum target,struct gl_texture_object * texObj,GLint level,GLint internalFormat,GLint border) argument
2568 copytexsubimage_error_check(struct gl_context * ctx,GLuint dimensions,const struct gl_texture_object * texObj,GLenum target,GLint level,GLint xoffset,GLint yoffset,GLint zoffset,GLint width,GLint height,const char * caller) argument
[all...]
H A Dtexstore.h97 GLuint dimensions,
/xsrc/external/mit/MesaLib.old/dist/src/mesa/main/
H A Dpbo.c68 _mesa_validate_pbo_access(GLuint dimensions, argument
114 start = _mesa_image_offset(dimensions, pack, width, height,
118 end = _mesa_image_offset(dimensions, pack, width, height,
180 _mesa_validate_pbo_source(struct gl_context *ctx, GLuint dimensions, argument
187 assert(dimensions == 1 || dimensions == 2 || dimensions == 3);
189 if (!_mesa_validate_pbo_access(dimensions, unpack, width, height, depth,
223 _mesa_validate_pbo_source_compressed(struct gl_context *ctx, GLuint dimensions, argument
261 GLuint dimensions,
260 _mesa_map_validate_pbo_source(struct gl_context * ctx,GLuint dimensions,const struct gl_pixelstore_attrib * unpack,GLsizei width,GLsizei height,GLsizei depth,GLenum format,GLenum type,GLsizei clientMemSize,const GLvoid * ptr,const char * where) argument
338 _mesa_map_validate_pbo_dest(struct gl_context * ctx,GLuint dimensions,const struct gl_pixelstore_attrib * unpack,GLsizei width,GLsizei height,GLsizei depth,GLenum format,GLenum type,GLsizei clientMemSize,GLvoid * ptr,const char * where) argument
397 _mesa_validate_pbo_teximage(struct gl_context * ctx,GLuint dimensions,GLsizei width,GLsizei height,GLsizei depth,GLenum format,GLenum type,const GLvoid * pixels,const struct gl_pixelstore_attrib * unpack,const char * funcName) argument
439 _mesa_validate_pbo_compressed_teximage(struct gl_context * ctx,GLuint dimensions,GLsizei imageSize,const GLvoid * pixels,const struct gl_pixelstore_attrib * packing,const char * funcName) argument
[all...]
H A Dpbo.h37 _mesa_validate_pbo_access(GLuint dimensions,
50 GLuint dimensions,
67 GLuint dimensions,
79 _mesa_validate_pbo_teximage(struct gl_context *ctx, GLuint dimensions,
87 GLuint dimensions, GLsizei imageSize,
98 _mesa_validate_pbo_source(struct gl_context *ctx, GLuint dimensions,
106 _mesa_validate_pbo_source_compressed(struct gl_context *ctx, GLuint dimensions,
H A Dpixelstore.h63 GLint dimensions,
H A Dtexgetimage.c77 get_tex_depth(struct gl_context *ctx, GLuint dimensions, argument
102 void *dest = _mesa_image_address(dimensions, &ctx->Pack, pixels,
126 get_tex_depth_stencil(struct gl_context *ctx, GLuint dimensions, argument
150 void *dest = _mesa_image_address(dimensions, &ctx->Pack, pixels,
175 get_tex_stencil(struct gl_context *ctx, GLuint dimensions, argument
198 void *dest = _mesa_image_address(dimensions, &ctx->Pack, pixels,
221 get_tex_ycbcr(struct gl_context *ctx, GLuint dimensions, argument
241 void *dest = _mesa_image_address(dimensions, &ctx->Pack, pixels,
307 get_tex_rgba_compressed(struct gl_context *ctx, GLuint dimensions, argument
364 void *dest = _mesa_image_address(dimensions,
424 get_tex_rgba_uncompressed(struct gl_context * ctx,GLuint dimensions,GLint xoffset,GLint yoffset,GLint zoffset,GLsizei width,GLsizei height,GLint depth,GLenum format,GLenum type,GLvoid * pixels,struct gl_texture_image * texImage,GLbitfield transferOps) argument
564 get_tex_rgba(struct gl_context * ctx,GLuint dimensions,GLint xoffset,GLint yoffset,GLint zoffset,GLsizei width,GLsizei height,GLint depth,GLenum format,GLenum type,GLvoid * pixels,struct gl_texture_image * texImage) argument
693 const GLuint dimensions = local in function:_mesa_GetTexSubImage_sw
774 const GLuint dimensions = local in function:get_compressed_texsubimage_sw
1093 const GLuint dimensions = (target == GL_TEXTURE_3D) ? 3 : 2; local in function:pbo_error_check
1579 packed_compressed_size(GLuint dimensions,mesa_format format,GLsizei width,GLsizei height,GLsizei depth,const struct gl_pixelstore_attrib * packing) argument
1615 GLuint dimensions; local in function:getcompressedteximage_error_check
[all...]
H A Dimage.h44 _mesa_image_offset( GLuint dimensions,
51 _mesa_image_address( GLuint dimensions,
H A Dteximage.c559 * Return number of dimensions per mipmap level for the given texture target.
694 * and the dimensions.
695 * The dimensions are expected not to include the border.
1822 * \param dimensions texture image dimensions (must be 1, 2 or 3).
1845 GLuint dimensions, GLenum target,
1864 "glTexImage%dD(level=%d)", dimensions, level);
1874 "glTexImage%dD(border=%d)", dimensions, border);
1880 "glTexImage%dD(width, height or depth < 0)", dimensions);
1898 dimensions, _mesa_enum_to_strin
1844 texture_error_check(struct gl_context * ctx,GLuint dimensions,GLenum target,GLint level,GLint internalFormat,GLenum format,GLenum type,GLint width,GLint height,GLint depth,GLint border,const GLvoid * pixels) argument
2026 compressed_texture_error_check(struct gl_context * ctx,GLint dimensions,GLenum target,GLint level,GLenum internalFormat,GLsizei width,GLsizei height,GLsizei depth,GLint border,GLsizei imageSize,const GLvoid * data) argument
2184 texsubimage_error_check(struct gl_context * ctx,GLuint dimensions,struct gl_texture_object * texObj,GLenum target,GLint level,GLint xoffset,GLint yoffset,GLint zoffset,GLint width,GLint height,GLint depth,GLenum format,GLenum type,const GLvoid * pixels,const char * callerName) argument
2299 copytexture_error_check(struct gl_context * ctx,GLuint dimensions,GLenum target,GLint level,GLint internalFormat,GLint border) argument
2565 copytexsubimage_error_check(struct gl_context * ctx,GLuint dimensions,const struct gl_texture_object * texObj,GLenum target,GLint level,GLint xoffset,GLint yoffset,GLint zoffset,GLint width,GLint height,const char * caller) argument
[all...]
H A Dpixelstore.c321 GLint dimensions,
335 if (dimensions > 1 &&
343 if (dimensions > 2 &&
319 _mesa_compressed_pixel_storage_error_check(struct gl_context * ctx,GLint dimensions,const struct gl_pixelstore_attrib * packing,const char * caller) argument
H A Dglformats.h138 unsigned dimensions);
H A Dpack.h85 _mesa_unpack_image(GLuint dimensions,
H A Dtexstore.h97 GLuint dimensions,
/xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/postprocess/
H A Dpp_mlaa.c58 static unsigned int dimensions[2] = { 0, 0 }; variable in typeref:typename:unsigned int[2]
91 if (dimensions[0] != p->framebuffer.width ||
92 dimensions[1] != p->framebuffer.height) {
96 dimensions[0] = p->framebuffer.width;
97 dimensions[1] = p->framebuffer.height;
/xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/postprocess/
H A Dpp_mlaa.c58 static unsigned int dimensions[2] = { 0, 0 }; variable in typeref:typename:unsigned int[2]
91 if (dimensions[0] != p->framebuffer.width ||
92 dimensions[1] != p->framebuffer.height) {
96 dimensions[0] = p->framebuffer.width;
97 dimensions[1] = p->framebuffer.height;
/xsrc/external/mit/mesa-demos/dist/src/objviewer/
H A Dglm.h121 /* glmDimensions: Calculates the dimensions (width, height, depth) of
125 * dimensions - array of 3 floats (float dimensions[3])
128 glmDimensions(GLMmodel* model, float* dimensions);
/xsrc/external/mit/MesaLib/dist/docs/relnotes/
H A D7.11.2.rst61 - intel: Fix region dimensions for stencil buffers received from DDX
/xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/tgsi/
H A Dtgsi_sanity.c42 /* max 2 dimensions */
43 uint dimensions : 4; member in struct:__anonfa1b294f0108
81 reg->dimensions = 1;
91 reg->dimensions = 2;
289 if (reg->dimensions == 2) {

Completed in 25 milliseconds

1234