Searched defs:caps (Results 51 - 75 of 155) sorted by relevance

1234567

/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/
H A DShaderD3D.cpp86 // TODO(geofflang): use context's caps
87 const gl::Caps &caps = mRenderer->getRendererCaps(); local
90 resources.MaxVertexAttribs = caps.maxVertexAttributes;
91 resources.MaxVertexUniformVectors = caps.maxVertexUniformVectors;
92 resources.MaxVaryingVectors = caps.maxVaryingVectors;
93 resources.MaxVertexTextureImageUnits = caps.maxVertexTextureImageUnits;
94 resources.MaxCombinedTextureImageUnits = caps.maxCombinedTextureImageUnits;
95 resources.MaxTextureImageUnits = caps.maxTextureImageUnits;
96 resources.MaxFragmentUniformVectors = caps.maxFragmentUniformVectors;
97 resources.MaxDrawBuffers = caps
[all...]
/external/chromium_org/third_party/libjingle/source/talk/media/devices/
H A Ddevicemanager.cc95 int caps = VIDEO_RECV; local
97 caps |= AUDIO_SEND;
100 caps |= AUDIO_RECV;
103 caps |= VIDEO_SEND;
105 return caps;
H A Dfakedevicemanager.h53 int caps = VIDEO_RECV; local
55 caps |= AUDIO_SEND;
58 caps |= AUDIO_RECV;
61 caps |= VIDEO_SEND;
63 return caps;
H A Dwin32devicemanager.cc312 WAVEINCAPS caps; local
313 if (waveInGetDevCaps(i, &caps, sizeof(caps)) == MMSYSERR_NOERROR &&
314 caps.wChannels > 0) {
315 devs->push_back(Device(rtc::ToUtf8(caps.szPname),
322 WAVEOUTCAPS caps; local
323 if (waveOutGetDevCaps(i, &caps, sizeof(caps)) == MMSYSERR_NOERROR &&
324 caps.wChannels > 0) {
325 devs->push_back(Device(rtc::ToUtf8(caps
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
H A Dsvga_screen.c391 SVGA3dSurfaceFormatCaps caps; local
433 svga_get_format_cap(ss, svga_format, &caps);
446 return (caps.value & mask.value) == mask.value;
575 SVGA3dSurfaceFormatCaps caps; local
585 svga_get_format_cap(svgascreen, SVGA3D_Z_DF16, &caps);
586 has_df16 = (caps.value & mask.value) == mask.value;
588 svga_get_format_cap(svgascreen, SVGA3D_Z_DF24, &caps);
589 has_df24 = (caps.value & mask.value) == mask.value;
591 svga_get_format_cap(svgascreen, SVGA3D_Z_D24S8_INT, &caps);
592 has_d24s8_int = (caps
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
H A Dapi_path.c313 VGbitfield caps; local
336 caps = path_capabilities(p);
337 if (!(caps & VG_PATH_CAPABILITY_POINT_ALONG_PATH) ||
338 !(caps & VG_PATH_CAPABILITY_TANGENT_ALONG_PATH)) {
371 VGbitfield caps; local
391 caps = path_capabilities(p);
392 if (!(caps & VG_PATH_CAPABILITY_PATH_BOUNDS)) {
408 VGbitfield caps; local
428 caps = path_capabilities(p);
429 if (!(caps
[all...]
H A Dvgu.c60 VGbitfield caps; local
65 caps = vgGetPathCapabilities(path);
66 if (!(caps & VG_PATH_CAPABILITY_APPEND_TO)) {
87 VGbitfield caps; local
98 caps = vgGetPathCapabilities(path);
99 if (!(caps & VG_PATH_CAPABILITY_APPEND_TO)) {
139 VGbitfield caps; local
144 caps = vgGetPathCapabilities(path);
145 if (!(caps & VG_PATH_CAPABILITY_APPEND_TO)) {
182 VGbitfield caps; local
233 VGbitfield caps; local
268 VGbitfield caps; local
[all...]
/external/chromium_org/third_party/skia/src/gpu/
H A DGrDrawState.cpp15 GrOptDrawState* GrDrawState::createOptState(const GrDrawTargetCaps& caps) const {
16 if (NULL == fCachedOptState || caps.getUniqueID() != fCachedCapsID) {
20 fCachedOptState = SkNEW_ARGS(GrOptDrawState, (*this, blendFlags, srcCoeff, dstCoeff, caps));
21 fCachedCapsID = caps.getUniqueID();
27 SkASSERT(GrOptDrawState(*this, blendFlags, srcCoeff, dstCoeff, caps) == *fCachedOptState);
37 const GrDrawState& a, const GrDrawState& b, const GrDrawTargetCaps& caps) {
61 if (!opaque->hasSolidCoverage() && opaque->couldApplyCoverage(caps)) {
63 if (!nonOpaque->couldApplyCoverage(caps)) {
298 bool GrDrawState::couldApplyCoverage(const GrDrawTargetCaps& caps) const {
299 if (caps
36 CombineIfPossible( const GrDrawState& a, const GrDrawState& b, const GrDrawTargetCaps& caps) argument
[all...]
H A DGrSWMaskHelper.cpp69 static bool choose_compressed_fmt(const GrDrawTargetCaps* caps, argument
77 if (!(caps->compressedTexSubImageSupport())) {
84 if (caps->isConfigTexturable(kASTC_12x12_GrPixelConfig)) {
87 } else if (caps->isConfigTexturable(kLATC_GrPixelConfig)) {
90 } else if (caps->isConfigTexturable(kR11_EAC_GrPixelConfig)) {
177 choose_compressed_fmt(fContext->getGpu()->caps(), &fCompressedFormat)) {
248 SkASSERT(fContext->getGpu()->caps()->isConfigTexturable(desc.fConfig));
259 bool reuseScratch = fContext->getGpu()->caps()->reuseScratchTextures();
/external/chromium_org/third_party/skia/src/gpu/effects/
H A DGrBezierEffect.cpp155 const GrDrawTargetCaps& caps,
161 gp = GrConicEffect::Create(edgeType, caps);
293 const GrDrawTargetCaps& caps,
299 gp = GrQuadEffect::Create(edgeType, caps);
473 const GrDrawTargetCaps& caps,
479 gp = GrCubicEffect::Create(edgeType, caps);
153 TestCreate(SkRandom* random, GrContext*, const GrDrawTargetCaps& caps, GrTexture*[]) argument
291 TestCreate(SkRandom* random, GrContext*, const GrDrawTargetCaps& caps, GrTexture*[]) argument
471 TestCreate(SkRandom* random, GrContext*, const GrDrawTargetCaps& caps, GrTexture*[]) argument
/external/chromium_org/third_party/skia/src/gpu/gl/builders/
H A DGrGLFragmentShaderBuilder.cpp46 const GrTexture* dstCopy, const GrGLCaps& caps) {
48 if (caps.fbFetchSupport()) {
52 if (!caps.textureSwizzleSupport() && GrPixelConfigIsAlphaOnly(dstCopy->config())) {
45 KeyForDstRead( const GrTexture* dstCopy, const GrGLCaps& caps) argument
H A DGrGLShaderBuilder.cpp123 const GrGLenum* GrGLShaderBuilder::GetTexParamSwizzle(GrPixelConfig config, const GrGLCaps& caps) { argument
124 if (caps.textureSwizzleSupport() && GrPixelConfigIsAlphaOnly(config)) {
125 if (caps.textureRedSupport()) {
/external/chromium_org/third_party/skia/tests/
H A DPaintTest.cpp250 const SkPaint::Cap caps[] = { local
282 FOR_SETUP(l, caps, setStrokeCap)
/external/chromium_org/third_party/v4l2capture/
H A Dv4l2capture.c171 struct v4l2_capability caps; local
173 if(my_ioctl(self->fd, VIDIOC_QUERYCAP, &caps))
189 if(caps.capabilities & capability->id)
205 return Py_BuildValue("sssO", caps.driver, caps.card, caps.bus_info, set);
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_screen.c391 SVGA3dSurfaceFormatCaps caps; local
433 svga_get_format_cap(ss, svga_format, &caps);
446 return (caps.value & mask.value) == mask.value;
575 SVGA3dSurfaceFormatCaps caps; local
585 svga_get_format_cap(svgascreen, SVGA3D_Z_DF16, &caps);
586 has_df16 = (caps.value & mask.value) == mask.value;
588 svga_get_format_cap(svgascreen, SVGA3D_Z_DF24, &caps);
589 has_df24 = (caps.value & mask.value) == mask.value;
591 svga_get_format_cap(svgascreen, SVGA3D_Z_D24S8_INT, &caps);
592 has_d24s8_int = (caps
[all...]
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dapi_path.c313 VGbitfield caps; local
336 caps = path_capabilities(p);
337 if (!(caps & VG_PATH_CAPABILITY_POINT_ALONG_PATH) ||
338 !(caps & VG_PATH_CAPABILITY_TANGENT_ALONG_PATH)) {
371 VGbitfield caps; local
391 caps = path_capabilities(p);
392 if (!(caps & VG_PATH_CAPABILITY_PATH_BOUNDS)) {
408 VGbitfield caps; local
428 caps = path_capabilities(p);
429 if (!(caps
[all...]
H A Dvgu.c60 VGbitfield caps; local
65 caps = vgGetPathCapabilities(path);
66 if (!(caps & VG_PATH_CAPABILITY_APPEND_TO)) {
87 VGbitfield caps; local
98 caps = vgGetPathCapabilities(path);
99 if (!(caps & VG_PATH_CAPABILITY_APPEND_TO)) {
139 VGbitfield caps; local
144 caps = vgGetPathCapabilities(path);
145 if (!(caps & VG_PATH_CAPABILITY_APPEND_TO)) {
182 VGbitfield caps; local
233 VGbitfield caps; local
268 VGbitfield caps; local
[all...]
/external/oprofile/agents/jvmti/
H A Dlibjvmti_oprofile.c243 jvmtiCapabilities caps; local
274 memset(&caps, '\0', sizeof(caps));
275 caps.can_generate_compiled_method_load_events = 1;
276 error = (*jvmti)->AddCapabilities(jvmti, &caps);
284 memset(&caps, '\0', sizeof(caps));
285 caps.can_get_line_numbers = 1;
286 caps.can_get_source_file_name = 1;
287 error = (*jvmti)->AddCapabilities(jvmti, &caps);
[all...]
/external/qemu/distrib/sdl-1.2.15/src/audio/windx5/
H A DSDL_dx5audio.c431 DSBCAPS caps; local
461 SDL_memset(&caps, 0, sizeof(caps));
462 caps.dwSize = sizeof(caps);
463 result = IDirectSoundBuffer_GetCaps(*sndbuf, &caps);
471 if ( (chunksize > caps.dwBufferBytes) ||
472 ((caps.dwBufferBytes%chunksize) != 0) ) {
480 caps.dwBufferBytes, chunksize);
483 numchunks = (caps
[all...]
/external/skia/src/gpu/effects/
H A DGrConvexPolyEffect.cpp69 const GrDrawTargetCaps& caps,
359 const GrDrawTargetCaps& caps,
67 TestCreate(SkRandom* random, GrContext*, const GrDrawTargetCaps& caps, GrTexture*[]) argument
357 TestCreate(SkRandom* random, GrContext*, const GrDrawTargetCaps& caps, GrTexture*[]) argument
/external/skia/src/gpu/gl/
H A DGrGLProgramDesc.cpp19 const GrGLCaps& caps,
36 return factory.glEffectKey(drawEffect, caps);
144 header->fExperimentalGS = gpu->caps().geometryShaderSupport();
149 bool defaultToUniformInputs = GR_GL_NO_CONSTANT_ATTRIBUTES || gpu->caps()->pathRenderingSupport();
176 SkASSERT(NULL != dstCopy || gpu->caps()->dstReadInShaderSupport());
229 if (gpu->caps()->dualSourceBlendingSupport() &&
18 get_key_and_update_stats(const GrEffectStage& stage, const GrGLCaps& caps, bool useExplicitLocalCoords, bool* setTrueIfReadsDst, bool* setTrueIfReadsPos, bool* setTrueIfHasVertexCode) argument
/external/skia/tests/
H A DPaintTest.cpp250 const SkPaint::Cap caps[] = { local
282 FOR_SETUP(l, caps, setStrokeCap)
/external/smack/src/org/jivesoftware/smackx/entitycaps/
H A DEntityCapsManager.java75 public static final String NAMESPACE = "http://jabber.org/protocol/caps";
89 protected static Map<String, DiscoverInfo> caps = new Cache<String, DiscoverInfo>(1000, -1); field in class:EntityCapsManager
132 caps.put(nodeVer, info);
185 DiscoverInfo info = caps.get(nodeVer);
222 ((Cache) caps).setMaxCacheSize(maxCacheSize);
259 // This calculates the local entity caps version
268 // Listen for remote presence stanzas with the caps extension
311 // Intercept presence packages and add caps data when intended.
320 CapsExtension caps = new CapsExtension(ENTITY_NODE, getCapsVersion(), "sha-1");
321 packet.addExtension(caps);
[all...]
/external/valgrind/main/coregrind/
H A Dm_debuglog.c735 Bool is_long, caps; local
867 caps = toBool(format[i] == 'X');
874 ret += myvprintf_int64(send, send_arg2, flags, 16, width, caps,
877 ret += myvprintf_int64(send, send_arg2, flags, 16, width, caps,
/external/wpa_supplicant_8/wpa_supplicant/
H A Dbss.h78 u16 caps; member in struct:wpa_bss

Completed in 716 milliseconds

1234567