Searched defs:dstType (Results 1 - 10 of 10) sorted by relevance

/external/mesa3d/src/mesa/main/
H A Dblit.c104 GLenum dstType = _mesa_get_format_datatype(dstFormat); local
114 if (dstType != GL_INT && dstType != GL_UNSIGNED_INT) {
115 assert(dstType == GL_UNSIGNED_NORMALIZED ||
116 dstType == GL_SIGNED_NORMALIZED ||
117 dstType == GL_FLOAT);
119 dstType = GL_FLOAT;
122 return srcType == dstType;
H A Dimage.c475 GLenum dstType, GLvoid *dst,
485 assert(srcType != dstType);
489 if (dstType == GL_UNSIGNED_SHORT) {
508 assert(dstType == GL_FLOAT);
522 if (dstType == GL_UNSIGNED_BYTE) {
541 assert(dstType == GL_FLOAT);
555 if (dstType == GL_UNSIGNED_BYTE) {
570 assert(dstType == GL_UNSIGNED_SHORT);
474 _mesa_convert_colors(GLenum srcType, const GLvoid *src, GLenum dstType, GLvoid *dst, GLuint count, const GLubyte mask[]) argument
H A Dpack.c491 * dstType - destination data type
500 GLenum dstType, GLvoid *dest,
518 assert(dstType == GL_UNSIGNED_BYTE ||
519 dstType == GL_UNSIGNED_SHORT ||
520 dstType == GL_UNSIGNED_INT ||
521 dstType == GL_FLOAT_32_UNSIGNED_INT_24_8_REV);
532 dstType == GL_UNSIGNED_BYTE) {
538 dstType == GL_UNSIGNED_INT &&
571 switch (dstType) {
603 _mesa_problem(ctx, "bad dstType i
499 _mesa_unpack_stencil_span( struct gl_context *ctx, GLuint n, GLenum dstType, GLvoid *dest, GLenum srcType, const GLvoid *source, const struct gl_pixelstore_attrib *srcPacking, GLbitfield transferOps ) argument
612 _mesa_pack_stencil_span( struct gl_context *ctx, GLuint n, GLenum dstType, GLvoid *dest, const GLubyte *source, const struct gl_pixelstore_attrib *dstPacking ) argument
784 _mesa_unpack_depth_span( struct gl_context *ctx, GLuint n, GLenum dstType, GLvoid *dest, GLuint depthMax, GLenum srcType, const GLvoid *source, const struct gl_pixelstore_attrib *srcPacking ) argument
1017 _mesa_pack_depth_span( struct gl_context *ctx, GLuint n, GLvoid *dest, GLenum dstType, const GLfloat *depthSpan, const struct gl_pixelstore_attrib *dstPacking ) argument
1154 _mesa_pack_depth_stencil_span(struct gl_context *ctx,GLuint n, GLenum dstType, GLuint *dest, const GLfloat *depthVals, const GLubyte *stencilVals, const struct gl_pixelstore_attrib *dstPacking) argument
[all...]
H A Dtexstore.c151 GLenum dstType; local
158 dstType = GL_UNSIGNED_INT;
160 dstType = GL_FLOAT;
171 dstType, dstRow,
560 * dstType = GL_FLOAT_32_UNSIGNED_INT_24_8_REV
827 GLenum dstType; local
844 dstType = _mesa_get_format_datatype(dstFormat);
846 return dstType != GL_INT && dstType != GL_UNSIGNED_INT &&
/external/skia/src/shaders/
H A DSkShaderBase.h63 DstType dstType, SkColorSpace* dstColorSpace)
67 , fPreferredDstType(dstType)
62 ContextRec(const SkPaint& paint, const SkMatrix& matrix, const SkMatrix* localM, DstType dstType, SkColorSpace* dstColorSpace) argument
/external/mesa3d/src/mesa/swrast/
H A Ds_span.c1420 GLenum dstType = GL_FLOAT; local
1475 if (dstType == GL_UNSIGNED_BYTE) {
1479 else if (dstType == GL_FLOAT) {
/external/deqp/framework/randomshaders/
H A DrsgExpression.cpp634 bool isConversionOk (VariableType::Type srcType, VariableType::Type dstType, ConstValueRangeAccess valueRange) argument
643 return convTable[getBaseTypeConvNdx(srcType)][getBaseTypeConvNdx(dstType)](valueRange);
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DTimeZoneFormat.java1705 * @param dstType the name type used for daylight time
1710 private String formatSpecific(TimeZone tz, NameType stdType, NameType dstType, long date, Output<TimeType> timeType) { argument
1712 assert(dstType == NameType.LONG_DAYLIGHT || dstType == NameType.SHORT_DAYLIGHT);
1716 getTimeZoneNames().getDisplayName(ZoneMeta.getCanonicalCLDRID(tz), dstType, date) :
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DTimeZoneFormat.java1775 * @param dstType the name type used for daylight time
1780 private String formatSpecific(TimeZone tz, NameType stdType, NameType dstType, long date, Output<TimeType> timeType) { argument
1782 assert(dstType == NameType.LONG_DAYLIGHT || dstType == NameType.SHORT_DAYLIGHT);
1786 getTimeZoneNames().getDisplayName(ZoneMeta.getCanonicalCLDRID(tz), dstType, date) :
/external/skia/src/sksl/
H A DSkSLSPIRVCodeGenerator.cpp1575 const Type& dstType, OutputStream& out) {
1574 writeMatrixCopy(SpvId id, SpvId src, const Type& srcType, const Type& dstType, OutputStream& out) argument

Completed in 420 milliseconds