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

1 2

  /cts/suite/cts/deviceTests/opengl/jni/graphics/
Program.h 21 class Program {
23 Program(GLuint programId);
24 virtual ~Program() {};
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/tools/stats_viewer/
program.cs 10 static class Program
  /external/ceres-solver/internal/ceres/
program.h 49 // adding and modifying parameters and residuals. The Program contains the core
53 // objective function. Various parts of Ceres transform one Program into
57 class Program {
59 Program();
60 explicit Program(const Program& program);
62 // The ordered parameter and residual blocks for the program.
68 // Serialize to/from the program and update states.
85 // Update a state vector for the program given a delta
    [all...]
program.cc 31 #include "ceres/program.h"
53 Program::Program() {}
55 Program::Program(const Program& program)
56 : parameter_blocks_(program.parameter_blocks_),
57 residual_blocks_(program.residual_blocks_) {
60 const vector<ParameterBlock*>& Program::parameter_blocks() const
    [all...]
  /external/chromium_org/third_party/angle/src/libGLESv2/
Program.h 7 // Program.h: Defines the gl::Program class. Implements GL program objects
67 class Program
70 Program(rx::Renderer *renderer, ResourceManager *manager, GLuint handle);
72 ~Program();
121 DISALLOW_COPY_AND_ASSIGN(Program);
138 bool mDeleteStatus; // Flag to indicate that the program can be deleted when no longer in use
Program.cpp 7 // Program.cpp: Implements the gl::Program class. Implements GL program objects
10 #include "libGLESv2/Program.h"
70 // append a santized message to the program info log.
139 Program::Program(rx::Renderer *renderer, ResourceManager *manager, GLuint handle) : mResourceManager(manager), mHandle(handle)
152 Program::~Program()
167 bool Program::attachShader(Shader *shader
    [all...]
  /external/llvm/tools/bugpoint/
BugDriver.h 50 Module *Program; // The raw program, linked together
52 AbstractInterpreter *Interpreter; // How to run the program
109 /// miscompiles Program as input. It tries to reduce the testcase to
110 /// something that smaller that still miscompiles the program.
138 Module *getProgram() const { return Program; }
143 Module *OldProgram = Program;
144 Program = M;
158 /// setNewProgram - If we reduce or update the program somehow, call this
160 /// the specified one as the current program
    [all...]
  /external/deqp/framework/opengl/
gluShaderProgram.cpp 2 * drawElements Quality Program OpenGL ES Utilities
21 * \brief Wrapper for GL program object.
110 // Program
112 static bool getProgramLinkStatus (const RenderContext& renderCtx, deUint32 program)
117 gl.getProgramiv(program, GL_LINK_STATUS, &linkStatus);
122 static std::string getProgramInfoLog (const RenderContext& renderCtx, deUint32 program)
129 gl.getProgramiv(program, GL_INFO_LOG_LENGTH, &infoLogLen);
135 gl.getProgramInfoLog(program, (int)infoLog.size(), &unusedLen, &infoLog[0]);
141 Program::Program (const RenderContext& renderCtx
    [all...]
gluShaderProgram.hpp 4 * drawElements Quality Program OpenGL ES Utilities
23 * \brief Shader and Program helpers.
58 * \brief Program information (link status, log).
101 * \brief Program object.
103 class Program
106 Program (const RenderContext& renderCtx);
107 Program (const RenderContext& renderCtx, deUint32 program);
108 ~Program (void);
132 Program (const Program& other)
    [all...]
  /external/deqp/modules/gles31/functional/
es31fProgramInterfaceDefinition.cpp 2 * drawElements Quality Program OpenGL ES 3.1 Module
21 * \brief Program interface
295 Program::Program (void)
314 Program::~Program (void)
316 // delete shader struct types, need to be done by the program since shaders might share struct types
339 Shader* Program::addShader (glu::ShaderType type, glu::GLSLVersion version)
352 void Program::setSeparable (bool separable)
357 bool Program::isSeparable (void) cons
    [all...]
es31fProgramInterfaceDefinition.hpp 4 * drawElements Quality Program OpenGL ES 3.1 Module
23 * \brief Program interface
55 class Program;
84 friend class Program;
87 class Program
90 Program (void);
91 ~Program (void);
110 Program& operator= (const Program&);
111 Program (const Program&)
    [all...]
  /external/chromium_org/sandbox/linux/seccomp-bpf/
sandbox_bpf.h 40 // StartSandbox(), the program should indicate whether or not the sandbox
44 PROCESS_SINGLE_THREADED, // The program is currently single-threaded.
47 PROCESS_MULTI_THREADED, // The program may be multi-threaded.
51 // program in the kernel.
52 typedef std::vector<struct sock_filter> Program;
153 // Kill the program and print an error message.
171 // Assembles a BPF filter program from the current policy. After calling this
175 // For performance reasons, we normally only run the assembled BPF program
176 // through the verifier, iff the program was built in debug mode.
179 Program* AssembleFilter(bool force_verification)
    [all...]
codegen_unittest.cc 24 typedef SandboxBPF::Program Program;
48 // Create the most basic valid BPF program:
55 // Create a program with a single branch:
68 // Create a program with a single branch:
83 // Creates a basic BPF program that we'll use to test some of the code:
146 // This simple program demonstrates https://crbug.com/351103/
151 // Without the fix for this bug, this program should trigger the check in
152 // CompileAndCompare: the serialized graphs from the program and its compiled
257 Instruction* program, int)
    [all...]
  /external/deqp/framework/referencerenderer/
rrRenderer.hpp 4 * drawElements Quality Program Reference Renderer
60 struct Program
62 Program (const VertexShader* vertexShader_, const FragmentShader* fragmentShader_, const GeometryShader* geometryShader_ = DE_NULL)
110 DrawCommand (const RenderState& state_, const RenderTarget& renderTarget_, const Program& program_, int numVertexAttribs_, const VertexAttrib* vertexAttribs_, const PrimitiveList& primitives_)
113 , program (program_)
122 const Program& program; member in class:rr::DrawCommand
  /external/fonttools/Lib/fontTools/ttLib/tables/
ttProgram.py 203 class Program(object):
281 raise tt_instructions_error("Syntax error in TT program (%s)" % assembly[pos-5:pos+15])
307 raise tt_instructions_error("Syntax error in TT program (%s)" % assembly[pos:pos+15])
456 p = Program()
  /external/lldb/test/unittest2/test/
test_break.py 197 class Program(unittest2.TestProgram):
207 p = Program(False)
220 p = Program(True)
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir.cpp 281 Symbol::Symbol(Program *prog, DataFile f, ubyte fidx)
295 Program *prog = pol.context()->getProgram();
319 ImmediateValue::ImmediateValue(Program *prog, uint32_t uval)
332 ImmediateValue::ImmediateValue(Program *prog, float fval)
345 ImmediateValue::ImmediateValue(Program *prog, double dval)
369 Program *prog = pol.context()->getProgram();
995 Program::Program(Type type, Target *arch)
1020 Program::~Program()
    [all...]
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir.cpp 281 Symbol::Symbol(Program *prog, DataFile f, ubyte fidx)
295 Program *prog = pol.context()->getProgram();
319 ImmediateValue::ImmediateValue(Program *prog, uint32_t uval)
332 ImmediateValue::ImmediateValue(Program *prog, float fval)
345 ImmediateValue::ImmediateValue(Program *prog, double dval)
369 Program *prog = pol.context()->getProgram();
995 Program::Program(Type type, Target *arch)
1020 Program::~Program()
    [all...]
  /developers/build/prebuilts/gradle/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/
Gles2ColoredTriangleList.java 60 private final Program mProgram;
77 * @param program program for drawing triangles
82 public Gles2ColoredTriangleList(Program program, float[] triangleCoords, float[] color) {
90 mProgram = program;
178 public static class Program {
195 /** ID OpenGL uses to identify this program. */
208 * Creates a program to draw triangle lists. For optimal drawing efficiency, one program
    [all...]
  /developers/samples/android/wearable/wear/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/
Gles2ColoredTriangleList.java 60 private final Program mProgram;
77 * @param program program for drawing triangles
82 public Gles2ColoredTriangleList(Program program, float[] triangleCoords, float[] color) {
90 mProgram = program;
178 public static class Program {
195 /** ID OpenGL uses to identify this program. */
208 * Creates a program to draw triangle lists. For optimal drawing efficiency, one program
    [all...]
  /development/samples/browseable/WatchFace/Wearable/src/com.example.android.wearable.watchface/
Gles2ColoredTriangleList.java 60 private final Program mProgram;
77 * @param program program for drawing triangles
82 public Gles2ColoredTriangleList(Program program, float[] triangleCoords, float[] color) {
90 mProgram = program;
178 public static class Program {
195 /** ID OpenGL uses to identify this program. */
208 * Creates a program to draw triangle lists. For optimal drawing efficiency, one program
    [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...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_compiler.h 46 struct rc_program Program;
147 int dump; /* Dump the program if Debug == 1? */
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_compiler.h 46 struct rc_program Program;
147 int dump; /* Dump the program if Debug == 1? */

Completed in 1042 milliseconds

1 2