HomeSort by relevance Sort by last modified time
    Searched full:program (Results 76 - 100 of 23787) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/gpu/command_buffer/tests/
gl_program_unittests.cc 65 // Load the program.
66 GLuint program = GLTestHelper::LoadProgram(v_shader_str, f_shader_str); local
67 glUseProgram(program);
68 // Relink program.
69 glLinkProgram(program);
73 GLint location_sx = glGetUniformLocation(program, "u_struct.x");
74 GLint location_array_0 = glGetUniformLocation(program, "u_array[0]");
82 glGetUniformiv(program, location_sx, &int_value);
84 glGetUniformfv(program, location_array_0, &float_value);
111 // Load the program
114 GLuint program = GLTestHelper::SetupProgram(vs, fs); local
146 GLuint program = GLTestHelper::LoadProgram(v_shader_str, f_shader_str); local
    [all...]
gl_bind_uniform_location_unittest.cc 65 GLuint program = glCreateProgram(); local
67 glBindUniformLocationCHROMIUM(program, color_a_location, "u_colorA");
68 glBindUniformLocationCHROMIUM(program, color_b_location, "u_colorB[0]");
69 glBindUniformLocationCHROMIUM(program, color_c_location, "u_colorC");
71 glAttachShader(program, vertex_shader);
72 glAttachShader(program, fragment_shader);
73 // Link the program
74 glLinkProgram(program);
77 glGetProgramiv(program, GL_LINK_STATUS, &linked);
80 GLint position_loc = glGetAttribLocation(program, "a_position")
160 GLuint program = glCreateProgram(); local
    [all...]
  /external/chromium_org/gpu/command_buffer/service/
program_manager_unittest.cc 69 // Check we can create program.
71 // Check program got created.
72 Program* program1 = manager_.GetProgram(kClient1Id);
77 // Check we get nothing for a non-existent program.
84 // Check we can create program.
85 Program* program0 = manager_.CreateProgram(kClient1Id, kService1Id);
87 // Check program got created.
88 Program* program1 = manager_.GetProgram(kClient1Id);
105 // Check we can create program.
106 scoped_refptr<Program> program1
366 const Program* program = manager_.GetProgram(kClientProgramId); local
384 const Program* program = manager_.GetProgram(kClientProgramId); local
398 const Program* program = manager_.GetProgram(kClientProgramId); local
406 const Program* program = manager_.GetProgram(kClientProgramId); local
435 Program* program = manager_.CreateProgram( local
478 const Program* program = manager_.GetProgram(kClientProgramId); local
508 const Program* program = manager_.GetProgram(kClientProgramId); local
581 Program* program = local
649 Program* program = local
741 Program* program = manager_.CreateProgram( local
779 Program* program = manager_.CreateProgram( local
828 Program* program = manager_.CreateProgram( local
876 const Program* program = manager_.GetProgram(kClientProgramId); local
974 Program* program = local
1015 Program* program = manager_.CreateProgram( local
1091 Program* program = manager_.CreateProgram( local
    [all...]
program_manager.h 30 // This is used to track which attributes a particular program needs
33 class GPU_EXPORT Program : public base::RefCounted<Program> {
80 Program(ProgramManager* manager, GLuint service_id);
128 // Gets all the program info.
186 // We only consider the declared attributes in the program.
195 friend class base::RefCounted<Program>;
198 ~Program();
222 // Resets the program.
225 // Updates the program info after a successful link
    [all...]
  /external/chromium_org/tools/gyp/test/library/
gyptest-shared.py 8 Verifies simple build of a "Hello, world!" program with shared libraries,
27 Hello from program.c
32 test.run_built_executable('program', chdir='relocate/src', stdout=expect)
40 # Update program.c to force a rebuild.
42 contents = test.read('relocate/src/program.c')
44 test.write('relocate/src/program.c', contents)
49 Hello again from program.c
54 test.run_built_executable('program', chdir='relocate/src', stdout=expect)
62 # Update program.c to force a rebuild.
64 contents = test.read('relocate/src/program.c'
    [all...]
gyptest-static.py 8 Verifies simple build of a "Hello, world!" program with static libraries,
27 Hello from program.c
32 test.run_built_executable('program', chdir='relocate/src', stdout=expect)
40 # Update program.c to force a rebuild.
42 contents = test.read('relocate/src/program.c')
44 test.write('relocate/src/program.c', contents)
49 Hello again from program.c
54 test.run_built_executable('program', chdir='relocate/src', stdout=expect)
62 # Update program.c and lib2.c to force a rebuild.
64 contents = test.read('relocate/src/program.c'
    [all...]
  /external/chromium_org/third_party/angle_dx11/src/libGLESv2/
Program.cpp 8 // Program.cpp: Implements the gl::Program class. Implements GL program objects
11 #include "libGLESv2/Program.h"
70 // append a santized message to the program info log.
135 Program::Program(rx::Renderer *renderer, ResourceManager *manager, GLuint handle) : mResourceManager(manager), mHandle(handle)
146 Program::~Program()
161 bool Program::attachShader(Shader *shader
    [all...]
  /cts/suite/pts/deviceTests/opengl/jni/graphics/
SceneGraphNode.h 19 #include "Program.h"
27 virtual void before(Program& program, Matrix& model, Matrix& view, Matrix& projection) = 0;
28 virtual void after(Program& program, Matrix& model, Matrix& view, Matrix& projection) = 0;
29 void draw(Program& program, Matrix& model, Matrix& view, Matrix& projection);
TexturedMeshNode.cpp 21 void TexturedMeshNode::before(Program& program, Matrix& model, Matrix& view, Matrix& projection) {
22 int textureUniformHandle = glGetUniformLocation(program.mProgramId, "u_Texture");
23 int positionHandle = glGetAttribLocation(program.mProgramId, "a_Position");
24 int texCoordHandle = glGetAttribLocation(program.mProgramId, "a_TexCoordinate");
39 void TexturedMeshNode::after(Program& program, Matrix& model, Matrix& view, Matrix& projection) {
Program.cpp 17 Program::Program(GLuint programId) :
21 void Program::before(Matrix& model, Matrix& view, Matrix& projection) {
25 void Program::after(Matrix& model, Matrix& view, Matrix& projection) {
  /external/chromium_org/gpu/command_buffer/client/
program_info_manager.h 23 virtual void CreateInfo(GLuint program) = 0;
25 virtual void DeleteInfo(GLuint program) = 0;
28 GLES2Implementation* gl, GLuint program, GLenum pname, GLint* params) = 0;
31 GLES2Implementation* gl, GLuint program, const char* name) = 0;
34 GLES2Implementation* gl, GLuint program, const char* name) = 0;
38 GLuint program, GLuint index, GLsizei bufsize, GLsizei* length,
43 GLuint program, GLuint index, GLsizei bufsize, GLsizei* length,
gles2_cmd_helper.h 30 GLuint program, uint32 name_shm_id, uint32 name_shm_offset,
36 program, name_shm_id, name_shm_offset, location_shm_id,
42 GLuint program, const char* name,
50 c->Init(program, name, location_shm_id, location_shm_offset);
55 GLuint program, uint32 name_bucket_id,
60 c->Init(program, name_bucket_id, location_shm_id, location_shm_offset);
65 GLuint program, uint32 name_shm_id, uint32 name_shm_offset,
71 program, name_shm_id, name_shm_offset, location_shm_id,
77 GLuint program, const char* name,
85 c->Init(program, name, location_shm_id, location_shm_offset)
    [all...]
  /external/llvm/autoconf/m4/
sanity_check.m4 1 dnl Check a program for version sanity. The test runs a program, passes it an
3 dnl output with a regular expression. If the output is non-empty, the program
5 dnl $1 - Name or full path of the program to run
11 AC_MSG_CHECKING([sanity for program ]$1)
20 AC_MSG_WARN([Program ]$1[ failed to pass sanity check.])
22 AC_MSG_ERROR([Program ]$1[ failed to pass sanity check.])
  /external/llvm/docs/CommandGuide/
llvm-cov.rst 7 :program:`llvm-cov` [-gcno=filename] [-gcda=filename] [dump]
12 The experimental :program:`llvm-cov` tool reads in description file generated
13 by compiler and coverage data file generated by instrumented program. This
14 program assumes that the description and data file uses same format as gcov
23 instrumenting program.
32 debug :program:`llvm-cov` itself.
37 :program:`llvm-cov` returns 1 if it cannot read input files. Otherwise, it
  /external/llvm/projects/sample/autoconf/m4/
sanity_check.m4 1 dnl Check a program for version sanity. The test runs a program, passes it an
3 dnl output with a regular expression. If the output is non-empty, the program
5 dnl $1 - Name or full path of the program to run
11 AC_MSG_CHECKING([sanity for program ]$1)
20 AC_MSG_WARN([Program ]$1[ failed to pass sanity check.])
22 AC_MSG_ERROR([Program ]$1[ failed to pass sanity check.])
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
ProgramPort.java 40 return "Program " + super.toString();
49 Program program = (Program)fieldValue; local
50 program.setHostValue(mVarName, mValue);
55 "Access to program field '" + mField.getName() + "' was denied!");
57 throw new RuntimeException("Non Program field '" + mField.getName()
  /external/chromium_org/media/tools/shader_bench/
gpu_painter.cc 65 // Create program and attach shaders.
66 GLuint program = glCreateProgram(); local
67 glAttachShader(program, vertex_shader);
68 glAttachShader(program, fragment_shader);
71 glLinkProgram(program);
73 glGetProgramiv(program, GL_LINK_STATUS, &result);
77 glGetProgramInfoLog(program, kErrorSize - 1, &len, log);
79 LOG(FATAL) << "Program did not link: " << log;
81 glUseProgram(program);
84 int pos_location = glGetAttribLocation(program, "in_pos")
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
i915_debug_fp.c 258 unsigned opcode, const unsigned * program)
261 print_dest_reg(stream, program[0]);
262 if (program[0] & A0_DEST_SATURATE)
270 print_src_reg(stream, GET_SRC0_REG(program[0], program[1]));
277 print_src_reg(stream, GET_SRC1_REG(program[1], program[2]));
284 print_src_reg(stream, GET_SRC2_REG(program[2]));
292 unsigned opcode, const unsigned * program)
294 print_dest_reg(stream, program[0] | A0_DEST_CHANNEL_ALL)
    [all...]
  /external/mesa3d/src/gallium/drivers/i915/
i915_debug_fp.c 258 unsigned opcode, const unsigned * program)
261 print_dest_reg(stream, program[0]);
262 if (program[0] & A0_DEST_SATURATE)
270 print_src_reg(stream, GET_SRC0_REG(program[0], program[1]));
277 print_src_reg(stream, GET_SRC1_REG(program[1], program[2]));
284 print_src_reg(stream, GET_SRC2_REG(program[2]));
292 unsigned opcode, const unsigned * program)
294 print_dest_reg(stream, program[0] | A0_DEST_CHANNEL_ALL)
    [all...]
  /frameworks/base/libs/usb/tests/AccessoryChat/
README.txt 6 accessorychat - A C command-line program that communicates with AccessoryChat.
7 This program behaves as if it were a USB accessory.
9 command line program, which will work if run as root on an
  /external/chromium_org/ppapi/native_client/tests/ppapi_browser/bad/
ppapi_bad_manifest_bad_files.nmf 2 "program": {
  /external/chromium_org/ppapi/native_client/tests/ppapi_browser/extension_mime_handler/
ppapi_extension_mime_handler.nmf 2 "program": {
  /external/chromium_org/ppapi/native_client/tests/ppapi_browser/manifest/
manifest_subdir.nmf 2 "program": {
manifest_top.nmf 2 "program": {
  /external/chromium_org/third_party/mesa/src/src/gallium/tests/graw/
SConscript 37 program = env.Program(
41 #env.Depends(program, graw)
42 env.Alias('graw-progs', program)

Completed in 724 milliseconds

1 2 34 5 6 7 8 91011>>