HomeSort by relevance Sort by last modified time
    Searched full:program (Results 76 - 100 of 23867) 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/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/gpu/command_buffer/client/
program_info_manager.cc 22 virtual void CreateInfo(GLuint program) OVERRIDE;
24 virtual void DeleteInfo(GLuint program) OVERRIDE;
27 GLuint program,
32 GLuint program,
36 GLuint program,
40 GLuint program,
49 GLuint program,
65 void NonCachedProgramInfoManager::CreateInfo(GLuint /* program */) {
68 void NonCachedProgramInfoManager::DeleteInfo(GLuint /* program */) {
73 GLuint /* program */,
    [all...]
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,
  /external/chromium_org/third_party/angle/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/cts/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/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/gpu/command_buffer/service/
program_manager.h 29 // This is used to track which attributes a particular program needs
32 class GPU_EXPORT Program : public base::RefCounted<Program> {
84 Program(ProgramManager* manager, GLuint service_id);
132 // Gets all the program info.
190 // We only consider the declared attributes in the program.
215 friend class base::RefCounted<Program>;
218 ~Program();
242 // Resets the program.
245 // Updates the program info after a successful link
    [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/chromium_org/tools/gyp/test/prune_targets/
test1.gyp 10 'sources': [ 'program.cc' ],
16 'sources': [ 'program.cc' ],
22 'sources': [ 'program.cc' ],
  /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)
  /external/chromium_org/tools/gyp/test/actions/src/subdir1/
program.c 8 printf("Hello from program.c\n");

Completed in 383 milliseconds

1 2 34 5 6 7 8 91011>>