Searched defs:normalized (Results 51 - 75 of 87) sorted by relevance

1234

/external/mesa3d/src/gallium/auxiliary/util/
H A Du_blitter.c561 boolean normalized = tex->target != PIPE_TEXTURE_RECT && local
564 if (normalized) {
/external/mesa3d/src/gallium/state_trackers/d3d1x/dxgi/src/
H A Ddxgi_native.cpp734 bool normalized; member in struct:dxgi_blitter
749 //normalized = !!pipe->screen->get_param(pipe, PIPE_CAP_NPOT_TEXTURES);
751 normalized = true;
787 sampler_state.normalized_coords = normalized;
792 fs = util_make_fragment_tex_shader(pipe, normalized ? TGSI_TEXTURE_2D : TGSI_TEXTURE_RECT, TGSI_INTERPOLATE_LINEAR);
/external/mesa3d/src/mesa/vbo/
H A Dvbo_attrib_tmp.h159 #define ATTR_UI(val, type, normalized, attr, arg) do { \
161 if (normalized) { \
167 if (normalized) { \
176 #define ATTR_UI_INDEX(val, type, normalized, index, arg) do { \
178 ATTR_UI(val, (type), normalized, 0, (arg)); \
180 ATTR_UI(val, (type), normalized, VBO_ATTRIB_GENERIC0 + (index), (arg)); \
1022 TAG(VertexAttribP1ui)(GLuint index, GLenum type, GLboolean normalized, argument
1026 ATTR_UI_INDEX(1, type, normalized, index, value);
1030 TAG(VertexAttribP2ui)(GLuint index, GLenum type, GLboolean normalized, argument
1034 ATTR_UI_INDEX(2, type, normalized, inde
1038 VertexAttribP3ui(GLuint index, GLenum type, GLboolean normalized, GLuint value) argument
1046 VertexAttribP4ui(GLuint index, GLenum type, GLboolean normalized, GLuint value) argument
1054 VertexAttribP1uiv(GLuint index, GLenum type, GLboolean normalized, const GLuint *value) argument
1062 VertexAttribP2uiv(GLuint index, GLenum type, GLboolean normalized, const GLuint *value) argument
1070 VertexAttribP3uiv(GLuint index, GLenum type, GLboolean normalized, const GLuint *value) argument
1078 VertexAttribP4uiv(GLuint index, GLenum type, GLboolean normalized, const GLuint *value) argument
[all...]
/external/deqp/framework/opengl/simplereference/
H A DsglrReferenceContext.hpp417 bool normalized; member in struct:sglr::rc::VertexArray::VertexAttribArray
709 virtual void vertexAttribPointer (deUint32 index, int size, deUint32 type, deBool normalized, int stride, const void *pointer);
/external/protobuf/conformance/third_party/jsoncpp/
H A Djsoncpp.cpp557 std::string normalized; local
558 normalized.reserve(end - begin);
567 normalized += '\n';
569 normalized += c;
572 return normalized;
578 const std::string& normalized = normalizeEOL(begin, end); local
581 lastValue_->setComment(normalized, placement);
583 commentsBefore_ += normalized;
602 // Consume DOS EOL. It will be normalized in addComment.
1537 const std::string& normalized
[all...]
/external/swiftshader/src/OpenGL/libGLES_CM/
H A DlibGLES_CM.cpp649 void VertexAttribPointer(GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid* ptr) argument
652 "GLboolean normalized = %d, GLsizei stride = %d, const GLvoid* ptr = %p)",
653 index, size, type, normalized, stride, ptr);
687 context->setVertexAttribState(index, context->getArrayBuffer(), size, type, (normalized == GL_TRUE), stride, ptr);
H A DContext.cpp880 void Context::setVertexAttribState(unsigned int attribNum, Buffer *boundBuffer, GLint size, GLenum type, bool normalized, argument
886 mState.vertexAttribute[attribNum].mNormalized = normalized;
2020 attribute.normalized = attributes[i].normalized;
/external/swiftshader/src/OpenGL/libGLESv2/
H A Dmain.cpp323 GL_APICALL void VertexAttribPointer(GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid* ptr);
1262 GL_APICALL void GL_APIENTRY glVertexAttribPointer(GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid* ptr) argument
1264 return es2::VertexAttribPointer(index, size, type, normalized, stride, ptr);
H A DContext.cpp814 void Context::setVertexAttribState(unsigned int attribNum, Buffer *boundBuffer, GLint size, GLenum type, bool normalized, argument
817 getCurrentVertexArray()->setAttributeState(attribNum, boundBuffer, size, type, normalized, stride, pointer);
2975 attribute.normalized = attributes[i].normalized;
H A DlibGLESv2.cpp6144 void VertexAttribPointer(GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid* ptr) argument
6147 "GLboolean normalized = %d, GLsizei stride = %d, const GLvoid* ptr = %p)",
6148 index, size, type, normalized, stride, ptr);
6203 context->setVertexAttribState(index, context->getArrayBuffer(), size, type, (normalized == GL_TRUE), stride, ptr);
/external/deqp/modules/glshared/
H A DglsDrawTest.cpp897 void setupArray (bool bound, int offset, int size, DrawTestSpec::InputType inType, DrawTestSpec::OutputType outType, bool normalized, int stride, int instanceDivisor, const rr::GenericVec4& defaultAttrib, bool isPositionAttr, bool bgraComponentOrder);
995 void AttributeArray::setupArray (bool bound, int offset, int size, DrawTestSpec::InputType inputType, DrawTestSpec::OutputType outType, bool normalized, int stride, int instanceDivisor, const rr::GenericVec4& defaultAttrib, bool isPositionAttr, bool bgraComponentOrder) argument
1001 m_normalize = normalized;
2543 << (attrib.normalize ? "normalized, " : "")
/external/swiftshader/src/OpenGL/libGL/
H A DContext.cpp737 void Context::setVertexAttribState(unsigned int attribNum, Buffer *boundBuffer, GLint size, GLenum type, bool normalized, argument
743 mState.vertexAttribute[attribNum].mNormalized = normalized;
1965 attribute.normalized = attributes[i].normalized;
3342 void APIENTRY glVertexAttribArray(GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid* ptr) argument
3345 "GLboolean normalized = %d, GLsizei stride = %d, const GLvoid* ptr = %p)",
3346 index, size, type, normalized, stride, ptr);
3352 context->setVertexAttribState(index, context->getArrayBuffer(), size, type, (normalized == GL_TRUE), stride, ptr);
3370 GLboolean normalized = mState.vertexAttribute[i].mNormalized; local
3383 listCommand(gl::newCommand(glVertexAttribArray, i, size, type, normalized, strid
[all...]
H A DlibGL.cpp5367 void APIENTRY glVertexAttribPointer(GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid* ptr) argument
5370 "GLboolean normalized = %d, GLsizei stride = %d, const GLvoid* ptr = %p)",
5371 index, size, type, normalized, stride, ptr);
5405 context->setVertexAttribState(index, context->getArrayBuffer(), size, type, (normalized == GL_TRUE), stride, ptr);
/external/libmojo/mojo/gpu/
H A Dmojo_gles2_impl_autogen.cc1199 GLboolean normalized,
1203 glVertexAttribPointer(indx, size, type, normalized, stride, ptr);
1196 VertexAttribPointer(GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const void* ptr) argument
/external/skia/src/gpu/gl/
H A DGrGLTestInterface.h182 virtual GrGLvoid vertexAttribPointer(GrGLuint indx, GrGLint size, GrGLenum type, GrGLboolean normalized, GrGLsizei stride, const GrGLvoid* ptr) {} argument
307 virtual GrGLvoid vertexArrayVertexAttribOffset(GrGLuint vaobj, GrGLuint buffer, GrGLuint index, GrGLint size, GrGLenum type, GrGLboolean normalized, GrGLsizei stride, GrGLintptr offset) {} argument
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.filebuffers_3.5.100.v20100520-0800.jar ... isNormalized org.eclipse.core.runtime.IPath normalized org.eclipse.core.runtime.IPath normalized ...
H A Dorg.eclipse.help_3.5.0.v20100524.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.text_3.5.0.v20100601-1300.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.apache.commons.httpclient_3.1.0.v201005080502.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/guice/extensions/persist/lib/
H A Dcommons-io.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt META-INF/NOTICE ...
/external/guice/extensions/struts2/lib/
H A Dcommons-io-1.3.2.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/io/ ...
H A Dfreemarker-2.3.16.jar ... .Object run () throws java.io.IOException String normalized java.io.File source } freemarker/cache/FileTemplateLoader$ ...
/external/libphonenumber/demo/war/WEB-INF/lib/
H A Dcommons-io-1.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/io/ ...
/external/icu/tools/srcgen/currysrc/libs/
H A Dorg.eclipse.text_3.5.400.v20150505-1044.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_.RSA META ...
/external/dexmaker/lib/
H A Ddalvik-dx-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/dx/ com/android/dx/cf/ ...

Completed in 1178 milliseconds

1234