HomeSort by relevance Sort by last modified time
    Searched defs:Caps (Results 1 - 2 of 2) sorted by null

  /external/skia/src/gpu/
GrDrawTarget.h 36 struct Caps {
37 Caps() { memset(this, 0, sizeof(Caps)); }
38 Caps(const Caps& c) { *this = c; }
39 Caps& operator= (const Caps& c) {
40 memcpy(this, &c, sizeof(Caps));
69 const Caps& getCaps() const { return fCaps; }
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/renderer/
Caps.java 44 * <code>Caps</code> is an enum specifying a capability that the {@link Renderer}
49 public enum Caps {
239 * @param caps The collection of renderer capabilities {@link Renderer#getCaps() }.
243 public static boolean supports(Collection<Caps> caps, Texture tex){
245 && !caps.contains(Caps.TextureArray))
255 return caps.contains(Caps.FloatDepthBuffer);
257 return caps.contains(Caps.TextureCompressionLATC)
    [all...]

Completed in 101 milliseconds