| /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/postprocess/ |
| pp_mlaa.c | 58 static unsigned int dimensions[2] = { 0, 0 }; variable 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.old/dist/src/gallium/auxiliary/postprocess/ |
| pp_mlaa.c | 58 static unsigned int dimensions[2] = { 0, 0 }; variable 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/tgsi/ |
| tgsi_sanity.c | 42 /* max 2 dimensions */ 43 uint dimensions : 4; member in struct:__anon1061 81 reg->dimensions = 1; 91 reg->dimensions = 2; 289 if (reg->dimensions == 2) {
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/main/ |
| formatquery.c | 799 * Returns the dimensions associated to a target. GL_TEXTURE_BUFFER and 817 * Returns the minimum amount of dimensions associated to a pname. So for 819 * have as minimum 2 dimensions. 825 * If the resource does not have at least two dimensions 845 * dimensions. 1043 GLint dimensions; local 1048 * "If the resource does not have at least two dimensions, or if the 1051 dimensions = _get_target_dimensions(target); 1053 if (dimensions < min_dimensions) 1085 /* Combining the dimensions. Note that for array targets, this woul [all...] |
| texgetimage.c | 77 get_tex_depth(struct gl_context *ctx, GLuint dimensions, 102 void *dest = _mesa_image_address(dimensions, &ctx->Pack, pixels, 126 get_tex_depth_stencil(struct gl_context *ctx, GLuint dimensions, 148 void *dest = _mesa_image_address(dimensions, &ctx->Pack, pixels, 182 get_tex_stencil(struct gl_context *ctx, GLuint dimensions, 205 void *dest = _mesa_image_address(dimensions, &ctx->Pack, pixels, 228 get_tex_ycbcr(struct gl_context *ctx, GLuint dimensions, 248 void *dest = _mesa_image_address(dimensions, &ctx->Pack, pixels, 314 get_tex_rgba_compressed(struct gl_context *ctx, GLuint dimensions, 371 void *dest = _mesa_image_address(dimensions, &ctx->Pack, pixels 700 const GLuint dimensions = local 781 const GLuint dimensions = local 1100 const GLuint dimensions = (target == GL_TEXTURE_3D) ? 3 : 2; local 1677 GLuint dimensions; local [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/tgsi/ |
| tgsi_sanity.c | 42 /* max 2 dimensions */ 43 uint dimensions : 4; member in struct:__anon3571 81 reg->dimensions = 1; 91 reg->dimensions = 2; 289 if (reg->dimensions == 2) {
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/main/ |
| formatquery.c | 789 * Returns the dimensions associated to a target. GL_TEXTURE_BUFFER and 807 * Returns the minimum amount of dimensions associated to a pname. So for 809 * have as minimum 2 dimensions. 815 * If the resource does not have at least two dimensions 835 * dimensions. 1033 GLint dimensions; local 1038 * "If the resource does not have at least two dimensions, or if the 1041 dimensions = _get_target_dimensions(target); 1043 if (dimensions < min_dimensions) 1075 /* Combining the dimensions. Note that for array targets, this woul [all...] |
| texgetimage.c | 77 get_tex_depth(struct gl_context *ctx, GLuint dimensions, 102 void *dest = _mesa_image_address(dimensions, &ctx->Pack, pixels, 126 get_tex_depth_stencil(struct gl_context *ctx, GLuint dimensions, 150 void *dest = _mesa_image_address(dimensions, &ctx->Pack, pixels, 175 get_tex_stencil(struct gl_context *ctx, GLuint dimensions, 198 void *dest = _mesa_image_address(dimensions, &ctx->Pack, pixels, 221 get_tex_ycbcr(struct gl_context *ctx, GLuint dimensions, 241 void *dest = _mesa_image_address(dimensions, &ctx->Pack, pixels, 307 get_tex_rgba_compressed(struct gl_context *ctx, GLuint dimensions, 364 void *dest = _mesa_image_address(dimensions, &ctx->Pack, pixels 693 const GLuint dimensions = local 774 const GLuint dimensions = local 1093 const GLuint dimensions = (target == GL_TEXTURE_3D) ? 3 : 2; local 1615 GLuint dimensions; local [all...] |
| /xsrc/external/mit/mesa-demos/dist/src/objviewer/ |
| glm.c | 889 /* glmDimensions: Calculates the dimensions (width, height, depth) of 893 * dimensions - array of 3 floats (float dimensions[3]) 896 glmDimensions(GLMmodel* model, float* dimensions) 903 assert(dimensions); 927 dimensions[X] = _glmAbs(maxx) + _glmAbs(minx); 928 dimensions[Y] = _glmAbs(maxy) + _glmAbs(miny); 929 dimensions[Z] = _glmAbs(maxz) + _glmAbs(minz); 1220 float dimensions[3]; local 1231 glmDimensions(model, dimensions); [all...] |
| /xsrc/external/mit/MesaLib/dist/include/CL/ |
| cl.hpp | 407 #define __IMAGE_DIMENSION_ERR __ERR_STR(Incorrect image dimensions) 4773 //! \brief Default constructor - resulting range has zero dimensions. 4810 //! \brief Queries the number of dimensions in the range. 4811 ::size_t dimensions() const { return dimensions_; } function in class:cl::NDRange 6368 object_, kernel(), (cl_uint) global.dimensions(), 6369 offset.dimensions() != 0 ? (const ::size_t*) offset : NULL, 6371 local.dimensions() != 0 ? (const ::size_t*) local : NULL,
|
| cl2.hpp | 853 #define __IMAGE_DIMENSION_ERR CL_HPP_ERR_STR_(Incorrect image dimensions) 5695 //! \brief Default constructor - resulting range has zero dimensions. 5739 //! \brief Queries the number of dimensions in the range. 5740 size_type dimensions() const function in class:cl::NDRange 5746 // runtime number of dimensions 8463 object_, kernel(), (cl_uint) global.dimensions(), 8464 offset.dimensions() != 0 ? (const size_type*) offset : NULL, 8466 local.dimensions() != 0 ? (const size_type*) local : NULL,
|
| /xsrc/external/mit/MesaLib.old/dist/include/CL/ |
| cl.hpp | 407 #define __IMAGE_DIMENSION_ERR __ERR_STR(Incorrect image dimensions) 4773 //! \brief Default constructor - resulting range has zero dimensions. 4810 //! \brief Queries the number of dimensions in the range. 4811 ::size_t dimensions() const { return dimensions_; } function in class:cl::NDRange 6368 object_, kernel(), (cl_uint) global.dimensions(), 6369 offset.dimensions() != 0 ? (const ::size_t*) offset : NULL, 6371 local.dimensions() != 0 ? (const ::size_t*) local : NULL,
|
| cl2.hpp | 824 #define __IMAGE_DIMENSION_ERR CL_HPP_ERR_STR_(Incorrect image dimensions) 5551 //! \brief Default constructor - resulting range has zero dimensions. 5595 //! \brief Queries the number of dimensions in the range. 5596 size_type dimensions() const function in class:cl::NDRange 5602 // runtime number of dimensions 7992 object_, kernel(), (cl_uint) global.dimensions(), 7993 offset.dimensions() != 0 ? (const size_type*) offset : NULL, 7995 local.dimensions() != 0 ? (const size_type*) local : NULL,
|
| /xsrc/external/mit/MesaLib/dist/src/microsoft/compiler/ |
| nir_to_dxil.c | 3314 const struct dxil_value *dimensions = emit_texture_size(ctx, ¶ms); local 3315 if (!dimensions) 3319 const struct dxil_value *retval = dxil_emit_extractval(&ctx->mod, dimensions, i); 3346 const struct dxil_value *dimensions = emit_texture_size(ctx, ¶ms); local 3347 if (!dimensions) 3350 const struct dxil_value *retval = dxil_emit_extractval(&ctx->mod, dimensions, 0);
|
| /xsrc/external/mit/xedit/dist/lisp/ |
| core.c | 2612 make-array dimensions &key element-type initial-element initial-contents 2621 LispObj *dimensions, *element_type, *initial_element, *initial_contents, local 2632 dimensions = ARGUMENT(0); 2634 if (INDEXP(dimensions)) { 2635 dim = CONS(dimensions, NIL); 2637 count = FIXNUM_VALUE(dimensions); 2639 else if (CONSP(dimensions)) { 2640 dim = dimensions; 2647 dim = dimensions; 2649 else if (dimensions == NIL) [all...] |