Searched defs:sampleCount (Results 1 - 17 of 17) sorted by relevance

/external/skia/debugger/QT/
H A DSkGLWidget.cpp21 void SkGLWidget::setSampleCount(int sampleCount) { argument
23 currentFormat.setSampleBuffers(sampleCount > 0);
24 currentFormat.setSamples(sampleCount);
H A DSkCanvasWidget.cpp134 void SkCanvasWidget::setGLSampleCount(int sampleCount) argument
136 fGLWidget.setSampleCount(sampleCount);
/external/deqp/modules/gles3/functional/
H A Des3fInternalFormatQueryTests.cpp76 GLint sampleCount = 0; local
77 for (size_t ndx = 0; ndx < samples.size(); ++ndx, prevSampleCount = sampleCount)
79 sampleCount = samples[ndx];
82 if (sampleCount <= 0)
84 m_testCtx.getLog() << TestLog::Message << "// ERROR: Expected sample count to be at least one; got " << sampleCount << TestLog::EndMessage;
90 if (ndx != 0 && !(sampleCount < prevSampleCount))
94 << "got " << prevSampleCount << " at index " << (ndx - 1) << ", and " << sampleCount << " at index " << ndx << TestLog::EndMessage;
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
H A DSampleAuxiliaryInformationSizesBox.java35 private int sampleCount; field in class:SampleAuxiliaryInformationSizesBox
71 IsoTypeWriter.writeUInt32(byteBuffer, sampleCount);
84 sampleCount = l2i(IsoTypeReader.readUInt32(content));
89 for (int i = 0; i < sampleCount; i++) {
129 return sampleCount;
132 public void setSampleCount(int sampleCount) { argument
133 this.sampleCount = sampleCount;
140 ", sampleCount=" + sampleCount
[all...]
H A DSampleSizeBox.java36 int sampleCount; field in class:SampleSizeBox
68 return sampleCount;
91 sampleCount = l2i(IsoTypeReader.readUInt32(content));
94 sampleSizes = new long[(int) sampleCount];
96 for (int i = 0; i < sampleCount; i++) {
113 IsoTypeWriter.writeUInt32(byteBuffer, sampleCount);
119 return "SampleSizeBox[sampleSize=" + getSampleSize() + ";sampleCount=" + getSampleCount() + "]";
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/samplegrouping/
H A DSampleToGroupBox.java90 private long sampleCount; field in class:SampleToGroupBox.Entry
93 public Entry(long sampleCount, int groupDescriptionIndex) { argument
94 this.sampleCount = sampleCount;
99 return sampleCount;
102 public void setSampleCount(long sampleCount) { argument
103 this.sampleCount = sampleCount;
117 "sampleCount=" + sampleCount
[all...]
/external/skia/src/image/
H A DSkImage_Gpu.cpp158 const int sampleCount = 0; // todo: make this an explicit parameter to newSurface()? local
159 return SkNEW_ARGS(SkImage_Gpu, (dstDesc.fWidth, dstDesc.fHeight, at, dst, sampleCount,
H A DSkSurface_Gpu.cpp40 int sampleCount = rt->numSamples(); local
43 return SkSurface::NewRenderTarget(fDevice->context(), kBudgeted, info, sampleCount,
49 const int sampleCount = fDevice->accessRenderTarget()->numSamples(); local
55 tex, sampleCount, budgeted));
100 int sampleCount, const SkSurfaceProps* props) {
101 SkAutoTUnref<SkGpuDevice> device(SkGpuDevice::Create(ctx, budgeted, info, sampleCount, props,
99 NewRenderTarget(GrContext* ctx, Budgeted budgeted, const SkImageInfo& info, int sampleCount, const SkSurfaceProps* props) argument
/external/skia/tools/
H A DPictureRenderingFlags.cpp276 int sampleCount = 0; local
289 sampleCount = 4;
293 sampleCount = 16;
297 sampleCount = 4;
301 sampleCount = 16;
331 renderer->setSampleCount(sampleCount);
H A DPictureRenderer.h219 void setSampleCount(int sampleCount) { argument
220 fSampleCount = sampleCount;
/external/deqp/modules/egl/
H A DteglMakeCurrentPerfTests.cpp80 int sampleCount; member in struct:deqp::egl::MakeCurrentPerfCase::Spec
417 log << TestLog::Message << "Sample count: " << m_spec.sampleCount << TestLog::EndMessage;
535 if ((int)m_samples.size() == m_spec.sampleCount)
552 const int sampleCount = 100; local
575 spec.sampleCount = sampleCount;
611 spec.sampleCount = sampleCount;
654 spec.sampleCount = sampleCount;
[all...]
/external/deqp/modules/gles31/functional/
H A Des31fTextureLevelStateQueryTests.cpp142 int sampleCount; member in struct:deqp::gles31::Functional::__anon3721::TextureGenerationSpec
152 , sampleCount (0)
392 texGen.sampleCount = 0;
408 texGen.sampleCount = 1;
429 texGen.sampleCount = maxSamples;
450 texGen.sampleCount = maxSamples;
605 texGen.sampleCount = 0;
625 texGen.sampleCount = (isMultisampleTarget(target) ? (1) : (0));
717 texGen.sampleCount = 0;
745 gl.glTexStorage2DMultisample(spec.bindTarget, spec.sampleCount, spe
890 int sampleCount = -1; local
[all...]
/external/icu/icu4c/source/i18n/
H A Dplurrule.cpp294 int32_t sampleCount = 0; local
300 for (sampleCount = 0; sampleCount < destCapacity && sampleStartIdx < samples.length(); ) {
313 dest[sampleCount++] = sampleValue;
347 dest[sampleCount++] = sampleValue;
349 if (sampleCount >= destCapacity) {
356 return sampleCount;
/external/svox/pico/compat/jni/
H A Dcom_android_tts_compat_SynthProxy.cpp101 void applyFilter(int16_t* buffer, size_t sampleCount) { argument
103 for (size_t i=0 ; i<sampleCount ; i++) {
/external/skia/src/gpu/
H A DSkGpuDevice.cpp174 const SkImageInfo& origInfo, int sampleCount) {
202 desc.fSampleCnt = sampleCount;
213 const SkImageInfo& info, int sampleCount,
216 SkAutoTUnref<GrRenderTarget> rt(CreateRenderTarget(context, budgeted, info, sampleCount));
173 CreateRenderTarget(GrContext* context, SkSurface::Budgeted budgeted, const SkImageInfo& origInfo, int sampleCount) argument
212 Create(GrContext* context, SkSurface::Budgeted budgeted, const SkImageInfo& info, int sampleCount, const SkSurfaceProps* props, unsigned flags) argument
/external/skia/src/gpu/gl/
H A DGrGLGpu.cpp816 int sampleCount,
827 sampleCount,
834 sampleCount,
842 sampleCount,
815 renderbuffer_storage_msaa(GrGLContext& ctx, int sampleCount, GrGLenum format, int width, int height) argument
/external/skia/samplecode/
H A DSampleApp.cpp1429 int SampleWindow::sampleCount() { function in class:SampleWindow

Completed in 515 milliseconds