/external/mesa3d/src/gallium/auxiliary/draw/ |
draw_pipe.c | 41 /* create pipeline stages */ 42 draw->pipeline.wide_line = draw_wide_line_stage( draw ); 43 draw->pipeline.wide_point = draw_wide_point_stage( draw ); 44 draw->pipeline.stipple = draw_stipple_stage( draw ); 45 draw->pipeline.unfilled = draw_unfilled_stage( draw ); 46 draw->pipeline.twoside = draw_twoside_stage( draw ); 47 draw->pipeline.offset = draw_offset_stage( draw ); 48 draw->pipeline.clip = draw_clip_stage( draw ); 49 draw->pipeline.flatshade = draw_flatshade_stage( draw ); 50 draw->pipeline.cull = draw_cull_stage( draw ) [all...] |
draw_pipe_validate.c | 58 * pipeline stages, or whether prims/verts can go through untouched. 60 * about the primitive pipeline stages. 80 * and triggering the pipeline, because we have to trigger the 81 * pipeline *anyway* if unfilled mode is active. 86 if (rasterizer->line_stipple_enable && draw->pipeline.line_stipple) 90 if (roundf(rasterizer->line_width) > draw->pipeline.wide_line_threshold) 94 if (rasterizer->line_smooth && draw->pipeline.aaline) 101 if (rasterizer->point_size > draw->pipeline.wide_point_threshold) 106 && draw->pipeline.wide_point_sprites) 110 if (rasterizer->point_smooth && draw->pipeline.aapoint 292 struct draw_stage *pipeline = validate_pipeline( stage ); local 299 struct draw_stage *pipeline = validate_pipeline( stage ); local 306 struct draw_stage *pipeline = validate_pipeline( stage ); local 312 struct draw_stage *pipeline = validate_pipeline( stage ); local [all...] |
draw_pipe_util.c | 114 struct draw_stage *stage = draw->pipeline.first; 125 if (draw->pipeline.verts) 128 char *verts = draw->pipeline.verts; 129 unsigned stride = draw->pipeline.vertex_stride; 131 for (i = 0; i < draw->pipeline.vertex_count; i++) {
|
/external/v8/src/ |
DEPS | 4 "+src/compiler/pipeline.h",
|
/external/v8/test/cctest/compiler/ |
test-pipeline.cc | 9 #include "src/compiler/pipeline.h" 30 Pipeline pipeline(&info); 32 Handle<Code> code = pipeline.GenerateCode(); 33 CHECK(Pipeline::SupportedTarget()); 36 USE(pipeline);
|
graph-builder-tester.cc | 8 #include "src/compiler/pipeline.h" 35 if (!Pipeline::SupportedBackend()) return NULL; 41 Pipeline pipeline(&info); 42 code_ = pipeline.GenerateCodeForMachineGraph(&linkage, graph_);
|
test-changes-lowering.cc | 12 #include "src/compiler/pipeline.h" 65 Pipeline pipeline(&info); 68 pipeline.GenerateCodeForMachineGraph(&linkage, this->graph()); 167 if (Pipeline::SupportedTarget()) { 197 if (Pipeline::SupportedTarget()) { 231 if (Pipeline::SupportedTarget()) { 254 if (Pipeline::SupportedTarget()) { 277 if (Pipeline::SupportedTarget()) { 283 if (Pipeline::SupportedTarget()) [all...] |
/external/mesa3d/src/mesa/tnl/ |
t_pipeline.c | 44 tnl->pipeline.new_state = ~0; 49 struct tnl_pipeline_stage *s = &tnl->pipeline.stages[i]; 55 tnl->pipeline.nr_stages = i; 63 for (i = 0 ; i < tnl->pipeline.nr_stages ; i++) { 64 struct tnl_pipeline_stage *s = &tnl->pipeline.stages[i]; 69 tnl->pipeline.nr_stages = 0; 80 if (tnl->vb.AttribPtr[i]->size != tnl->pipeline.last_attrib_size[i] || 81 tnl->vb.AttribPtr[i]->stride != tnl->pipeline.last_attrib_stride[i]) { 82 tnl->pipeline.last_attrib_size[i] = tnl->vb.AttribPtr[i]->size; 83 tnl->pipeline.last_attrib_stride[i] = tnl->vb.AttribPtr[i]->stride [all...] |
/external/deqp/modules/gles31/functional/ |
es31fProgramPipelineStateQueryTests.cpp | 21 * \brief Program Pipeline State Query tests. 102 const glu::ProgramPipeline pipeline (m_context.getRenderContext()); 122 gl.glBindProgramPipeline(pipeline.getPipeline()); 123 gl.glUseProgramStages(pipeline.getPipeline(), GL_VERTEX_SHADER_BIT, vtxProgram.getProgram()); 124 gl.glUseProgramStages(pipeline.getPipeline(), GL_FRAGMENT_SHADER_BIT, frgProgram.getProgram()); 125 GLU_EXPECT_NO_ERROR(gl.glGetError(), "gen pipeline"); 127 GLU_EXPECT_NO_ERROR(gl.glGetError(), "unbind pipeline"); 131 verifyStatePipelineInteger(result, gl, pipeline.getPipeline(), GL_ACTIVE_PROGRAM, 0, m_verifier); 137 gl.glActiveShaderProgram(pipeline.getPipeline(), frgProgram.getProgram()); 138 GLU_EXPECT_NO_ERROR(gl.glGetError(), "gen pipeline"); [all...] |
es31fSeparateShaderTests.cpp | 749 // Final pipeline has a single program? 811 msg << "Pipeline configuration:\n"; 912 // Program pipeline wrapper that retains references to component programs. 914 struct Pipeline 916 Pipeline (MovePtr<ProgramPipeline> pipeline_, 920 : pipeline (pipeline_) 935 UniquePtr<ProgramPipeline> pipeline; 941 void logPipeline(TestLog& log, const Pipeline& pipeline) 943 ProgramWrapper& vtxProg = pipeline.getVertexProgram() [all...] |
/external/deqp/doc/testspecs/GLES31/ |
functional.separate_shader.txt | 27 + Replacement of pipeline stages 28 + Independence of homonymous uniforms and constants in the pipeline's 31 + glProgramUniform on the pipeline's stages 42 + Testing pipeline rendering against a hardware-independent reference 46 The "api.current_program_priority" test case checks that a bound pipeline 48 pipeline and a differently behaving monolithic program. It then calls 51 but without a bound program pipeline. 53 The "api.active_program_uniform" test case creates a pipeline and a 54 program, binds the pipeline and sets that program as the pipeline's activ [all...] |
/external/v8/src/compiler/ |
pipeline.h | 25 class Pipeline { 27 explicit Pipeline(CompilationInfo* info) : info_(info) {} 29 // Run the entire pipeline and generate a handle to a code object. 32 // Run the pipeline on a machine graph and generate code. If {schedule}
|
/external/skia/src/gpu/gl/ |
GrGLProgram.cpp | 102 void GrGLProgram::setData(const GrPrimitiveProcessor& primProc, const GrPipeline& pipeline, 104 this->setRenderTargetState(primProc, pipeline); 111 const GrXferProcessor& xp = *pipeline.getXferProcessor(); 115 this->setFragmentData(primProc, pipeline); 122 const GrPipeline& pipeline) { 125 const GrPendingFragmentStage& stage = pipeline.getFragmentStage(e); 146 const GrPipeline& pipeline) { 149 fRenderTargetState.fRenderTargetSize.fHeight != pipeline.getRenderTarget()->height()) { 151 SkIntToScalar(pipeline.getRenderTarget()->height())); 155 this->onSetRenderTargetState(primProc, pipeline); [all...] |
GrGLProgramDesc.cpp | 91 const GrPipeline& pipeline, 115 for (int s = 0; s < pipeline.numFragmentStages(); ++s) { 116 const GrPendingFragmentStage& fps = pipeline.getFragmentStage(s); 126 const GrXferProcessor& xp = *pipeline.getXferProcessor(); 142 if (pipeline.readsFragPosition()) { 144 GrGLFragmentShaderBuilder::KeyForFragmentPosition(pipeline.getRenderTarget(), 149 header->fSnapVerticesToPixelCenters = pipeline.snapVerticesToPixelCenters(); 150 header->fColorEffectCnt = pipeline.numColorFragmentStages(); 151 header->fCoverageEffectCnt = pipeline.numCoverageFragmentStages();
|
/external/llvm/utils/lit/lit/ |
ShUtil.py | 5 from lit.ShCommands import Command, Pipeline, Seq 230 return Pipeline(commands, negate, self.pipefail) 291 Pipeline([Command(['echo', 'hello'], [])], False)) 293 Pipeline([Command(['echo', ''], [])], False)) 295 Pipeline([Command(['echo', '-DFOO=a'], [])], False)) 297 Pipeline([Command(['echo', '-DFOO=a'], [])], False)) 301 Pipeline([Command(['echo', 'hello'], 304 Pipeline([Command(['echo', 'hello'], [(('>',), 'c'), 307 Pipeline([Command(['a'], [(('>&',2), '1')])], False)) 311 Pipeline([Command(['a'], []) [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/ |
ImageFilterRS.java | 25 import com.android.gallery3d.filtershow.pipeline.PipelineInterface; 55 PipelineInterface pipeline = getEnvironment().getPipeline(); local 56 return pipeline.getRSContext(); 60 PipelineInterface pipeline = getEnvironment().getPipeline(); local 61 return pipeline.getInPixelsAllocation(); 65 PipelineInterface pipeline = getEnvironment().getPipeline(); local 66 return pipeline.getOutPixelsAllocation(); 84 PipelineInterface pipeline = getEnvironment().getPipeline(); local 85 createFilter(pipeline.getResources(), getEnvironment().getScaleFactor(), 116 PipelineInterface pipeline = getEnvironment().getPipeline() local [all...] |
/external/skia/src/gpu/ |
GrTestBatch.h | 16 * the batch pipeline and generate arbitrary geometry 50 void generateGeometry(GrBatchTarget* batchTarget, const GrPipeline* pipeline) override { 51 batchTarget->initDraw(fGeometryProcessor, pipeline); 63 this->onGenerateGeometry(batchTarget, pipeline); 83 virtual void onGenerateGeometry(GrBatchTarget* batchTarget, const GrPipeline* pipeline) = 0;
|
GrBatchTarget.cpp | 52 const GrPipeline* pipeline = bf->fPipeline; local 54 fGpu->buildProgramDesc(&desc, *primProc, *pipeline, bf->fBatchTracker); 56 GrGpu::DrawArgs args(primProc, pipeline, &desc, &bf->fBatchTracker);
|
/external/mesa3d/src/gallium/state_trackers/xvmc/tests/ |
xvmc_bench.c | 57 unsigned int pipeline; member in struct:Config 73 config->pipeline = 0; 106 config->pipeline |= PIPELINE_STEP_MC; 108 config->pipeline |= PIPELINE_STEP_CSC; 110 config->pipeline |= PIPELINE_STEP_SWAP; 157 "\t-p <pipeline>\tPipeline to test\n" 169 if (!config->pipeline) 170 config->pipeline = PIPELINE_STEP_MC | PIPELINE_STEP_CSC | PIPELINE_STEP_SWAP; 263 if (config.pipeline & PIPELINE_STEP_MC) 268 if (config.pipeline & PIPELINE_STEP_CSC [all...] |
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
Pipeline.java | 43 public class Pipeline extends InputStream { 59 Pipeline pipeline; field in class:Pipeline.MyTimer 63 protected MyTimer(Pipeline pipeline) { 64 this.pipeline = pipeline; 72 pipeline.close(); 122 public Pipeline(InputStream pipe, int readTimeout, Timer timer) {
|
/external/squashfs-tools/RELEASE-READMEs/ |
DONATIONS | 9 There's lots of exciting new improvements to Squashfs in the pipeline, and
|
/frameworks/base/docs/html/guide/topics/graphics/ |
index.jd | 15 <p>Earlier this year, Android 3.0 launched with a new 2D rendering pipeline designed to 16 support hardware acceleration on tablets. With this new pipeline, all drawing operations performed 18 Sandwich, brings an improved version of the hardware-accelerated 2D rendering pipeline.</p> 33 used for windows composition or OpenGL games for instance, but with this new rendering pipeline
|
/frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/engine/ |
Pipeline.java | 19 * The interface to the vr rendering pipeline 22 public interface Pipeline {
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
pipes.py | 1 """Conversion pipeline templates. 14 The module lets you construct a pipeline template by sticking one or 39 a pipeline. 48 exit status of the conversion pipeline. 50 To open a file for reading or writing through a conversion pipeline: 72 STDIN_STDOUT = '--' # Normal pipeline element 81 """Class representing a pipeline template.""" 84 """Template() returns a fresh pipeline template.""" 93 """t.reset() restores a pipeline template to its initial state.""" 97 """t.clone() returns a new pipeline template with identica [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
pipes.py | 1 """Conversion pipeline templates. 14 The module lets you construct a pipeline template by sticking one or 39 a pipeline. 48 exit status of the conversion pipeline. 50 To open a file for reading or writing through a conversion pipeline: 72 STDIN_STDOUT = '--' # Normal pipeline element 81 """Class representing a pipeline template.""" 84 """Template() returns a fresh pipeline template.""" 93 """t.reset() restores a pipeline template to its initial state.""" 97 """t.clone() returns a new pipeline template with identica [all...] |