HomeSort by relevance Sort by last modified time
    Searched defs:linked (Results 1 - 25 of 27) sorted by null

1 2

  /external/chromium_org/third_party/angle_dx11/samples/gles2_book/Common/
esShader.c 94 /// \return A new program object linked with the vertex/fragment shader pair, 0 on failure
101 GLint linked; local
128 glGetProgramiv ( programObject, GL_LINK_STATUS, &linked );
130 if ( !linked )
  /external/chromium_org/cc/output/
program_binding.cc 63 int linked = 0; local
64 GLC(context, context->getProgramiv(program_, GL_LINK_STATUS, &linked));
65 if (!linked) {
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/custom/
CustomFilterCompiledProgram.cpp 104 int linked = 0; local
105 m_context->getProgramiv(program, GraphicsContext3D::LINK_STATUS, &linked);
106 if (!linked) {
  /external/chromium_org/third_party/angle_dx11/samples/gles2_book/Hello_Triangle/
Hello_Triangle.c 98 GLint linked; local
120 glGetProgramiv ( programObject, GL_LINK_STATUS, &linked );
122 if ( !linked )
  /external/chromium_org/gpu/command_buffer/tests/
gl_bind_uniform_location_unittest.cc 76 GLint linked = 0; local
77 glGetProgramiv(program, GL_LINK_STATUS, &linked);
78 EXPECT_EQ(1, linked);
174 GLint linked = 0; local
175 glGetProgramiv(program, GL_LINK_STATUS, &linked);
176 EXPECT_EQ(1, linked);
gl_test_utils.cc 65 GLint linked = 0; local
66 glGetProgramiv(program, GL_LINK_STATUS, &linked);
67 if (linked == 0) {
72 EXPECT_EQ(1, linked) << "Error linking program: " << log;
  /external/chromium_org/third_party/mesa/src/src/glsl/
link_functions.cpp 39 call_link_visitor(gl_shader_program *prog, gl_shader *linked,
46 this->linked = linked;
76 * final linked shader. If it does, use it as the target of the call.
79 find_matching_signature(name, &callee->parameters, &linked, 1,
87 * linked. If it's not found there, return an error.
100 /* Find the prototype information in the linked shader. Generate any
103 ir_function *f = linked->symbols->get_function(name);
105 f = new(linked) ir_function(name);
107 /* Add the new function to the linked IR. Put it at the en
236 gl_shader *linked; member in class:call_link_visitor
    [all...]
linker.cpp 28 * Given a set of shaders that are to be linked to generate a final program,
32 * type. All shaders of a particular type (e.g., vertex shaders) are linked
53 * In the final stage individual shader executables are linked to create a
425 * In addition, set the type of the linked variable to the
522 * FINISHME: without an initializer is linked in two different
785 * linked shader.
957 * Combine a group of shaders for a single stage to generate a linked shader
1060 gl_shader *linked = ctx->Driver.NewShader(NULL, 0, main->Type); local
    [all...]
  /external/mesa3d/src/glsl/
link_functions.cpp 39 call_link_visitor(gl_shader_program *prog, gl_shader *linked,
46 this->linked = linked;
76 * final linked shader. If it does, use it as the target of the call.
79 find_matching_signature(name, &callee->parameters, &linked, 1,
87 * linked. If it's not found there, return an error.
100 /* Find the prototype information in the linked shader. Generate any
103 ir_function *f = linked->symbols->get_function(name);
105 f = new(linked) ir_function(name);
107 /* Add the new function to the linked IR. Put it at the en
236 gl_shader *linked; member in class:call_link_visitor
    [all...]
linker.cpp 28 * Given a set of shaders that are to be linked to generate a final program,
32 * type. All shaders of a particular type (e.g., vertex shaders) are linked
53 * In the final stage individual shader executables are linked to create a
425 * In addition, set the type of the linked variable to the
522 * FINISHME: without an initializer is linked in two different
785 * linked shader.
957 * Combine a group of shaders for a single stage to generate a linked shader
1060 gl_shader *linked = ctx->Driver.NewShader(NULL, 0, main->Type); local
    [all...]
  /cts/tests/tests/opengl/src/android/opengl/cts/
RendererOneColorBufferTest.java 149 int[] linked = new int[1]; local
172 GLES20.glGetProgramiv(programObject, GLES20.GL_LINK_STATUS, linked, 0);
174 if (linked[0] == 0)
  /development/ndk/platforms/android-18/samples/gles3jni/jni/
gles3jni.cpp 76 GLint linked = GL_FALSE; local
95 glGetProgramiv(program, GL_LINK_STATUS, &linked);
96 if (!linked) {
  /external/chromium_org/gpu/command_buffer/service/
gles2_cmd_copy_texture_chromium.cc 286 GLint linked; local
287 glGetProgramiv(programs_[program], GL_LINK_STATUS, &linked);
288 if (!linked)
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/gd3d1x/
sm4_to_tgsi.cpp 416 unsigned linked = program.cf_insn_linked[insn_num]; local
417 if(program.insns[linked]->opcode == SM4_OPCODE_ENDIF)
422 label_to_sm4_insn_num.push_back(std::make_pair(label, linked));
429 unsigned endif = program.cf_insn_linked[linked];
432 label_to_sm4_insn_num.push_back(std::make_pair(label, linked));
434 translate_insns(linked + 1, endif);
436 sm4_to_tgsi_insn_num[linked] = ureg_get_instruction_number(ureg);
440 translate_insns(insn_num + 1, linked);
  /external/mesa3d/src/gallium/state_trackers/d3d1x/gd3d1x/
sm4_to_tgsi.cpp 416 unsigned linked = program.cf_insn_linked[insn_num]; local
417 if(program.insns[linked]->opcode == SM4_OPCODE_ENDIF)
422 label_to_sm4_insn_num.push_back(std::make_pair(label, linked));
429 unsigned endif = program.cf_insn_linked[linked];
432 label_to_sm4_insn_num.push_back(std::make_pair(label, linked));
434 translate_insns(linked + 1, endif);
436 sm4_to_tgsi_insn_num[linked] = ureg_get_instruction_number(ureg);
440 translate_insns(insn_num + 1, linked);
  /sdk/emulator/opengl/tests/translator_tests/GLES_V2/
triangleV2.cpp 195 GLint linked; local
210 glGetProgramiv(programObject, GL_LINK_STATUS, &linked);
211 if(!linked)
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
TestPlugin.cpp 478 int linked = 0; local
479 m_context->getProgramiv(program, GL_LINK_STATUS, &linked);
480 if (!linked) {
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGLProgram.cpp 729 GrGLint linked = GR_GL_INIT_ZERO; local
730 GL_CALL(GetProgramiv(fProgramID, GR_GL_LINK_STATUS, &linked));
731 if (!linked) {
    [all...]
  /external/skia/src/gpu/gl/
GrGLProgram.cpp 729 GrGLint linked = GR_GL_INIT_ZERO; local
730 GL_CALL(GetProgramiv(fProgramID, GR_GL_LINK_STATUS, &linked));
731 if (!linked) {
    [all...]
  /frameworks/base/media/mca/filterfw/native/core/
shader_program.cpp 263 // Make sure we haven't compiled and linked already
361 GLint linked = 0; local
362 glGetProgramiv(program, GL_LINK_STATUS, &linked);
363 if (linked != GL_TRUE) {
    [all...]
  /external/blktrace/btt/
globals.h 163 int linked; member in struct:io
  /external/chromium_org/third_party/angle_dx11/src/libGLESv2/
Context.cpp 942 bool linked = programObject->link(); local
946 if (linked && program == mState.currentProgram)
    [all...]
  /prebuilts/sdk/tools/lib/
lombok-ast-0.2.jar 
  /prebuilts/tools/common/lombok-ast/
lombok-ast-0.2.1.jar 
lombok-ast-0.2.jar 

Completed in 944 milliseconds

1 2