HomeSort by relevance Sort by last modified time
    Searched full:program (Results 151 - 175 of 23867) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
i915_debug_fp.c 242 print_arith_op(GLuint opcode, const GLuint * program)
245 print_dest_reg(program[0]);
246 if (program[0] & A0_DEST_SATURATE)
254 print_src_reg(GET_SRC0_REG(program[0], program[1]));
261 print_src_reg(GET_SRC1_REG(program[1], program[2]));
268 print_src_reg(GET_SRC2_REG(program[2]));
275 print_tex_op(GLuint opcode, const GLuint * program)
277 print_dest_reg(program[0] | A0_DEST_CHANNEL_ALL)
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i915/
i915_debug_fp.c 242 print_arith_op(GLuint opcode, const GLuint * program)
245 print_dest_reg(program[0]);
246 if (program[0] & A0_DEST_SATURATE)
254 print_src_reg(GET_SRC0_REG(program[0], program[1]));
261 print_src_reg(GET_SRC1_REG(program[1], program[2]));
268 print_src_reg(GET_SRC2_REG(program[2]));
275 print_tex_op(GLuint opcode, const GLuint * program)
277 print_dest_reg(program[0] | A0_DEST_CHANNEL_ALL)
    [all...]
  /frameworks/native/opengl/tools/glgen/stubs/gles11/
glGetActiveUniformBlockName.cpp 1 /* void glGetActiveUniformBlockName ( GLuint program, GLuint uniformBlockIndex, GLsizei bufSize, GLsizei *length, GLchar *uniformBlockName ) */
4 (JNIEnv* _env, jobject _this, jint program, jint uniformBlockIndex, int bufSize, jintArray length_ref, jint lengthOffset, jbyteArray name_ref, jint nameOffset) {
50 (GLuint)program,
71 /* void glGetActiveUniformBlockName ( GLuint program, GLuint uniformBlockIndex, GLsizei bufSize, GLsizei *length, GLchar *uniformBlockName ) */
74 (JNIEnv* _env, jobject _this, jint program, jint uniformBlockIndex, jobject length_buf, jobject uniformBlockName_buf) {
100 (GLuint)program,
113 /* void glGetActiveUniformBlockName ( GLuint program, GLuint uniformBlockIndex, GLsizei bufSize, GLsizei *length, GLchar *uniformBlockName ) */
116 (JNIEnv *_env, jobject _this, jint program, jint uniformBlockIndex) {
118 glGetActiveUniformBlockiv((GLuint)program, (GLuint)uniformBlockIndex,
121 glGetActiveUniformBlockName((GLuint)program, (GLuint)uniformBlockIndex
    [all...]
  /frameworks/native/opengl/libs/GLES2/
gl2ext_api.in 7 void API_ENTRY(glGetProgramBinaryOES)(GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, GLvoid *binary) {
8 CALL_GL_API(glGetProgramBinaryOES, program, bufSize, length, binaryFormat, binary);
10 void API_ENTRY(glProgramBinaryOES)(GLuint program, GLenum binaryFormat, const GLvoid *binary, GLint length) {
11 CALL_GL_API(glProgramBinaryOES, program, binaryFormat, binary, length);
154 void API_ENTRY(glGetnUniformfvEXT)(GLuint program, GLint location, GLsizei bufSize, float *params) {
155 CALL_GL_API(glGetnUniformfvEXT, program, location, bufSize, params);
157 void API_ENTRY(glGetnUniformivEXT)(GLuint program, GLint location, GLsizei bufSize, GLint *params) {
158 CALL_GL_API(glGetnUniformivEXT, program, location, bufSize, params);
160 void API_ENTRY(glUseProgramStagesEXT)(GLuint pipeline, GLbitfield stages, GLuint program) {
161 CALL_GL_API(glUseProgramStagesEXT, pipeline, stages, program);
    [all...]
  /packages/apps/Camera/jni/feature_mos/src/mosaic_renderer/
Renderer.cpp 78 GLuint program = glCreateProgram(); local
79 if (program)
81 glAttachShader(program, vertexShader);
83 glAttachShader(program, pixelShader);
86 glLinkProgram(program);
88 glGetProgramiv(program, GL_LINK_STATUS, &linkStatus);
90 LOGI("Program Linked (%d)!", program);
95 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength);
101 glGetProgramInfoLog(program, bufLength, NULL, buf)
    [all...]
  /packages/apps/Camera2/jni/feature_mos/src/mosaic_renderer/
Renderer.cpp 78 GLuint program = glCreateProgram(); local
79 if (program)
81 glAttachShader(program, vertexShader);
83 glAttachShader(program, pixelShader);
86 glLinkProgram(program);
88 glGetProgramiv(program, GL_LINK_STATUS, &linkStatus);
90 LOGI("Program Linked (%d)!", program);
95 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength);
101 glGetProgramInfoLog(program, bufLength, NULL, buf)
    [all...]
  /external/ceres-solver/internal/ceres/
solver_impl.h 48 class Program;
66 Program* program,
80 Program* program,
86 // Create the transformed Program, which has all the fixed blocks
88 // ordering, has the E blocks first in the resulting program, with
93 static Program* CreateReducedProgram(Solver::Options* options,
106 // Reorder the residuals for program, if necessary, so that the
112 Program* program
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLUniformLocation.cpp 33 PassRefPtr<WebGLUniformLocation> WebGLUniformLocation::create(WebGLProgram* program, GC3Dint location)
35 return adoptRef(new WebGLUniformLocation(program, location));
38 WebGLUniformLocation::WebGLUniformLocation(WebGLProgram* program, GC3Dint location)
39 : m_program(program)
47 WebGLProgram* WebGLUniformLocation::program() const function in class:WebCore::WebGLUniformLocation
49 // If the program has been linked again, then this UniformLocation is no
58 // If the program has been linked again, then this UniformLocation is no
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/postprocess/
pp_filters.h 46 void pp_filter_setup_in(struct program *, struct pipe_resource *);
47 void pp_filter_setup_out(struct program *, struct pipe_resource *);
48 void pp_filter_end_pass(struct program *);
51 void pp_filter_misc_state(struct program *);
52 void pp_filter_draw(struct program *);
53 void pp_filter_set_fb(struct program *);
54 void pp_filter_set_clear_fb(struct program *);
  /external/mesa3d/src/gallium/auxiliary/postprocess/
pp_filters.h 46 void pp_filter_setup_in(struct program *, struct pipe_resource *);
47 void pp_filter_setup_out(struct program *, struct pipe_resource *);
48 void pp_filter_end_pass(struct program *);
51 void pp_filter_misc_state(struct program *);
52 void pp_filter_draw(struct program *);
53 void pp_filter_set_fb(struct program *);
54 void pp_filter_set_clear_fb(struct program *);
  /external/eclipse-windowbuilder/propertysheet/
NOTICE 4 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
6 THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
17 i) changes to the Program, and
19 ii) additions to the Program;
21 where such changes and/or additions to the Program originate from and
23 'originates' from a Contributor if it was added to the Program by such
25 Contributions do not include additions to the Program which: (i) are
26 separate modules of software distributed in conjunction with the Program
28 the Program.
30 "Contributor" means any person or entity that distributes the Program
    [all...]
  /prebuilts/tools/common/eclipse/
NOTICE 4 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
6 THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
17 i) changes to the Program, and
19 ii) additions to the Program;
21 where such changes and/or additions to the Program originate from and
23 'originates' from a Contributor if it was added to the Program by such
25 Contributions do not include additions to the Program which: (i) are
26 separate modules of software distributed in conjunction with the Program
28 the Program.
30 "Contributor" means any person or entity that distributes the Program
    [all...]
  /prebuilts/tools/common/m2/internal/com/android/external/eclipse/swt/3.5.0/
NOTICE 4 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
6 THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
17 i) changes to the Program, and
19 ii) additions to the Program;
21 where such changes and/or additions to the Program originate from and
23 'originates' from a Contributor if it was added to the Program by such
25 Contributions do not include additions to the Program which: (i) are
26 separate modules of software distributed in conjunction with the Program
28 the Program.
30 "Contributor" means any person or entity that distributes the Program
    [all...]
  /prebuilts/tools/common/m2/repository/com/android/external/eclipse/org-eclipse-core-commands/3.6.0/
NOTICE 4 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
6 THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
17 i) changes to the Program, and
19 ii) additions to the Program;
21 where such changes and/or additions to the Program originate from and
23 'originates' from a Contributor if it was added to the Program by such
25 Contributions do not include additions to the Program which: (i) are
26 separate modules of software distributed in conjunction with the Program
28 the Program.
30 "Contributor" means any person or entity that distributes the Program
    [all...]
  /prebuilts/tools/common/m2/repository/com/android/external/eclipse/org-eclipse-equinox-common/3.6.0/
NOTICE 4 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
6 THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
17 i) changes to the Program, and
19 ii) additions to the Program;
21 where such changes and/or additions to the Program originate from and
23 'originates' from a Contributor if it was added to the Program by such
25 Contributions do not include additions to the Program which: (i) are
26 separate modules of software distributed in conjunction with the Program
28 the Program.
30 "Contributor" means any person or entity that distributes the Program
    [all...]
  /prebuilts/tools/common/m2/repository/com/android/external/eclipse/org-eclipse-jface/3.6.2/
NOTICE 4 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
6 THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
17 i) changes to the Program, and
19 ii) additions to the Program;
21 where such changes and/or additions to the Program originate from and
23 'originates' from a Contributor if it was added to the Program by such
25 Contributions do not include additions to the Program which: (i) are
26 separate modules of software distributed in conjunction with the Program
28 the Program.
30 "Contributor" means any person or entity that distributes the Program
    [all...]
  /prebuilts/tools/common/m2/repository/com/android/external/osgi/osgi/4.0.0/
NOTICE 4 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
6 THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
17 i) changes to the Program, and
19 ii) additions to the Program;
21 where such changes and/or additions to the Program originate from and
23 'originates' from a Contributor if it was added to the Program by such
25 Contributions do not include additions to the Program which: (i) are
26 separate modules of software distributed in conjunction with the Program
28 the Program.
30 "Contributor" means any person or entity that distributes the Program
    [all...]
  /prebuilts/tools/common/osgi/
NOTICE 4 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
6 THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
17 i) changes to the Program, and
19 ii) additions to the Program;
21 where such changes and/or additions to the Program originate from and
23 'originates' from a Contributor if it was added to the Program by such
25 Contributions do not include additions to the Program which: (i) are
26 separate modules of software distributed in conjunction with the Program
28 the Program.
30 "Contributor" means any person or entity that distributes the Program
    [all...]
  /prebuilts/tools/darwin-x86/swt/
NOTICE 4 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
6 THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
17 i) changes to the Program, and
19 ii) additions to the Program;
21 where such changes and/or additions to the Program originate from and
23 'originates' from a Contributor if it was added to the Program by such
25 Contributions do not include additions to the Program which: (i) are
26 separate modules of software distributed in conjunction with the Program
28 the Program.
30 "Contributor" means any person or entity that distributes the Program
    [all...]
  /prebuilts/tools/darwin-x86_64/swt/
NOTICE 4 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
6 THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
17 i) changes to the Program, and
19 ii) additions to the Program;
21 where such changes and/or additions to the Program originate from and
23 'originates' from a Contributor if it was added to the Program by such
25 Contributions do not include additions to the Program which: (i) are
26 separate modules of software distributed in conjunction with the Program
28 the Program.
30 "Contributor" means any person or entity that distributes the Program
    [all...]
  /prebuilts/tools/linux-x86/swt/
NOTICE 4 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
6 THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
17 i) changes to the Program, and
19 ii) additions to the Program;
21 where such changes and/or additions to the Program originate from and
23 'originates' from a Contributor if it was added to the Program by such
25 Contributions do not include additions to the Program which: (i) are
26 separate modules of software distributed in conjunction with the Program
28 the Program.
30 "Contributor" means any person or entity that distributes the Program
    [all...]
  /prebuilts/tools/linux-x86_64/swt/
NOTICE 4 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
6 THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
17 i) changes to the Program, and
19 ii) additions to the Program;
21 where such changes and/or additions to the Program originate from and
23 'originates' from a Contributor if it was added to the Program by such
25 Contributions do not include additions to the Program which: (i) are
26 separate modules of software distributed in conjunction with the Program
28 the Program.
30 "Contributor" means any person or entity that distributes the Program
    [all...]
  /prebuilts/tools/windows/swt/
NOTICE 4 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
6 THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
17 i) changes to the Program, and
19 ii) additions to the Program;
21 where such changes and/or additions to the Program originate from and
23 'originates' from a Contributor if it was added to the Program by such
25 Contributions do not include additions to the Program which: (i) are
26 separate modules of software distributed in conjunction with the Program
28 the Program.
30 "Contributor" means any person or entity that distributes the Program
    [all...]
  /prebuilts/tools/windows-x86_64/swt/
NOTICE 4 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
6 THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
17 i) changes to the Program, and
19 ii) additions to the Program;
21 where such changes and/or additions to the Program originate from and
23 'originates' from a Contributor if it was added to the Program by such
25 Contributions do not include additions to the Program which: (i) are
26 separate modules of software distributed in conjunction with the Program
28 the Program.
30 "Contributor" means any person or entity that distributes the Program
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/
NOTICE 3 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
5 THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
15 i) changes to the Program, and
17 ii) additions to the Program;
19 where such changes and/or additions to the Program originate from and
21 'originates' from a Contributor if it was added to the Program by such
23 Contributions do not include additions to the Program which: (i) are
24 separate modules of software distributed in conjunction with the Program
26 the Program.
28 "Contributor" means any person or entity that distributes the Program
    [all...]

Completed in 952 milliseconds

1 2 3 4 5 67 8 91011>>