Home
last modified time | relevance | path

Searched defs:Tile (Results 1 – 25 of 996) sorted by relevance

12345678910>>...40

/dports/graphics/ospray/ospray-2.8.0/ospray/fb/
H A DTile.h26 struct OSPRAY_SDK_INTERFACE __aligned(64) Tile struct
48 Tile() = default; argument
49 Tile(const vec2i &tile, const vec2i &fbsize, const int32 accumId) in Tile() function
/dports/misc/gedkeeper/GEDKeeper-2.19.1/projects/GKMap/GKMap.Core/
H A DTile.cs18 public struct Tile : IDisposable struct
22 private GPoint fPos;
23 private PureImage[] fOverlays;
24 private long fOverlaysCount;
25 private int fZoom;
27 public readonly bool NotEmpty;
39 internal bool HasAnyOverlays
46 public int Zoom
53 public GPoint Pos
61 public Tile(int zoom, GPoint pos) in Tile() argument
[all …]
/dports/databases/pg_tileserv/pg_tileserv-1.0.8/
H A Dtile.go13 type Tile struct { struct
14 Zoom int `json:"zoom"`
15 X int `json:"x"`
16 Y int `json:"y"`
17 Ext string `json:"ext"`
18 Bounds Bounds `json:"bounds"`
41 func (tile *Tile) width() float64 {
49 func (tile *Tile) IsValid() bool {
63 func (tile *Tile) CalculateBounds() (e error) {
85 func (tile *Tile) String() string {
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/query_tiles/
H A Dtile.h45 struct Tile { struct
54 Tile& operator=(const Tile& other); argument
55 Tile& operator=(Tile&& other) noexcept; argument
73 std::vector<std::unique_ptr<Tile>> sub_tiles; argument
78 // Print pretty formatted content in Tile struct. argument
/dports/astro/libosmium/libosmium-2.17.2/include/osmium/geom/
H A Dtile.hpp97 struct Tile { struct
99 enum {
104 uint32_t x;
107 uint32_t y;
110 uint32_t z;
120 explicit Tile(uint32_t zoom, uint32_t tx, uint32_t ty) noexcept : in Tile() function
137 explicit Tile(uint32_t zoom, const osmium::Location& location) : in Tile() argument
154 explicit Tile(uint32_t zoom, const osmium::geom::Coordinates& coordinates) : in Tile() function
166 bool valid() const noexcept { in valid()
/dports/converters/osm2pgsql/osm2pgsql-1.5.1/contrib/libosmium/include/osmium/geom/
H A Dtile.hpp99 struct Tile { struct
101 enum {
106 uint32_t x;
109 uint32_t y;
112 uint32_t z;
122 explicit Tile(uint32_t zoom, uint32_t tx, uint32_t ty) noexcept : in Tile() function
139 explicit Tile(uint32_t zoom, const osmium::Location& location) : in Tile() function
156 explicit Tile(uint32_t zoom, const osmium::geom::Coordinates& coordinates) : in Tile() argument
168 bool valid() const noexcept { in valid()
/dports/www/osrm-backend/osrm-backend-5.26.0/third_party/libosmium/include/osmium/geom/
H A Dtile.hpp99 struct Tile { struct
101 enum {
106 uint32_t x;
109 uint32_t y;
112 uint32_t z;
122 explicit Tile(uint32_t zoom, uint32_t tx, uint32_t ty) noexcept : in Tile() function
139 explicit Tile(uint32_t zoom, const osmium::Location& location) : in Tile() function
156 explicit Tile(uint32_t zoom, const osmium::geom::Coordinates& coordinates) : in Tile() argument
168 bool valid() const noexcept { in valid()
/dports/sysutils/diskonaut/diskonaut-0.11.0/src/state/tiles/
H A Dtile.rs6 pub struct Tile { struct
18 impl Tile { argument
/dports/graphics/tiled/tiled-1.7.2/src/plugins/tbin/tbin/
H A DTile.hpp37 struct Tile struct
40 enum Type
47 std::string tilesheet;
50 {
53 } staticData;
56 {
59 } animatedData;
61 Properties props;
63 …e bool isNullTile() const { return staticData.tileIndex == -1 && animatedData.frames.size() == 0; } in isNullTile()
/dports/games/fs2open/fs2open.github.com-release_21_4_1/lib/libRocket/Source/Core/
H A DDecoratorTiled.h83 struct Tile struct
102 struct TileData argument
108 typedef std::map< RenderInterface*, TileData > TileDataMap; argument
114 mutable TileDataMap data; argument
116 TileRepeatMode repeat_mode; argument
117 TileOrientation orientation; argument
/dports/math/clblas/clBLAS-2.10/src/library/blas/gens/
H A Dtile.h98 typedef struct Tile { struct
113 } Tile; argument
/dports/graphics/qgis/qgis-3.22.3/src/providers/postgres/raster/
H A Dqgspostgresrastershareddata.h111 struct Tile struct
126 TileIdType tileId; argument
127 int srid;
128 QgsRectangle extent;
152 bool fetchTilesData( unsigned int overviewFactor, const QList<TileIdType> &tileIds ); argument
156 Tile const *setTileData( const QString &cacheKey, TileIdType tileId, const QByteArray &data ); argument
/dports/graphics/qgis-ltr/qgis-3.16.16/src/providers/postgres/raster/
H A Dqgspostgresrastershareddata.h111 struct Tile struct
126 TileIdType tileId; argument
127 int srid;
128 QgsRectangle extent;
152 bool fetchTilesData( unsigned int overviewFactor, const QList<TileIdType> &tileIds ); argument
156 Tile const *setTileData( const QString &cacheKey, TileIdType tileId, const QByteArray &data ); argument
/dports/lang/gcc12-devel/gcc-12-20211205/libgo/go/golang.org/x/mod/sumdb/tlog/
H A Dtile.go39 type Tile struct { struct
40 H int // height of tile (1 ≤ H ≤ 30)
41 L int // level in tiling (-1 ≤ L ≤ 63)
42 N int64 // number within level (0 ≤ N, unbounded)
43 W int // width of tile (1 ≤ W ≤ 2**H; 2**H is complete tile)
75 func HashFromTile(t Tile, data []byte, index int64) (Hash, error) {
136 func ReadTileData(t Tile, r HashReader) ([]byte, error) {
171 func (t Tile) Path() string {
264 ReadTiles(tiles []Tile) (data [][]byte, err error)
269 SaveTiles(tiles []Tile, data [][]byte)
[all …]
/dports/lang/gcc10/gcc-10.3.0/libgo/go/golang.org/x/mod/sumdb/tlog/
H A Dtile.go39 type Tile struct { struct
40 H int // height of tile (1 ≤ H ≤ 30)
41 L int // level in tiling (-1 ≤ L ≤ 63)
42 N int64 // number within level (0 ≤ N, unbounded)
43 W int // width of tile (1 ≤ W ≤ 2**H; 2**H is complete tile)
75 func HashFromTile(t Tile, data []byte, index int64) (Hash, error) {
136 func ReadTileData(t Tile, r HashReader) ([]byte, error) {
171 func (t Tile) Path() string {
264 ReadTiles(tiles []Tile) (data [][]byte, err error)
269 SaveTiles(tiles []Tile, data [][]byte)
[all …]
/dports/lang/go-devel/go-becaeea1199b875bc24800fa88f2f4fea119bf78/src/cmd/vendor/golang.org/x/mod/sumdb/tlog/
H A Dtile.go39 type Tile struct { struct
40 H int // height of tile (1 ≤ H ≤ 30)
41 L int // level in tiling (-1 ≤ L ≤ 63)
42 N int64 // number within level (0 ≤ N, unbounded)
43 W int // width of tile (1 ≤ W ≤ 2**H; 2**H is complete tile)
75 func HashFromTile(t Tile, data []byte, index int64) (Hash, error) {
136 func ReadTileData(t Tile, r HashReader) ([]byte, error) {
171 func (t Tile) Path() string {
264 ReadTiles(tiles []Tile) (data [][]byte, err error)
269 SaveTiles(tiles []Tile, data [][]byte)
[all …]
/dports/lang/go-devel/go-dragonfly-amd64-bootstrap/src/cmd/vendor/golang.org/x/mod/sumdb/tlog/
H A Dtile.go39 type Tile struct { struct
40 H int // height of tile (1 ≤ H ≤ 30)
41 L int // level in tiling (-1 ≤ L ≤ 63)
42 N int64 // number within level (0 ≤ N, unbounded)
43 W int // width of tile (1 ≤ W ≤ 2**H; 2**H is complete tile)
75 func HashFromTile(t Tile, data []byte, index int64) (Hash, error) {
136 func ReadTileData(t Tile, r HashReader) ([]byte, error) {
171 func (t Tile) Path() string {
264 ReadTiles(tiles []Tile) (data [][]byte, err error)
269 SaveTiles(tiles []Tile, data [][]byte)
[all …]
/dports/security/vault/vault-1.8.2/vendor/golang.org/x/mod/sumdb/tlog/
H A Dtile.go39 type Tile struct { struct
40 H int // height of tile (1 ≤ H ≤ 30)
41 L int // level in tiling (-1 ≤ L ≤ 63)
42 N int64 // number within level (0 ≤ N, unbounded)
43 W int // width of tile (1 ≤ W ≤ 2**H; 2**H is complete tile)
75 func HashFromTile(t Tile, data []byte, index int64) (Hash, error) {
136 func ReadTileData(t Tile, r HashReader) ([]byte, error) {
171 func (t Tile) Path() string {
264 ReadTiles(tiles []Tile) (data [][]byte, err error)
269 SaveTiles(tiles []Tile, data [][]byte)
[all …]
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/workhorse/vendor/golang.org/x/mod/sumdb/tlog/
H A Dtile.go39 type Tile struct { struct
40 H int // height of tile (1 ≤ H ≤ 30)
41 L int // level in tiling (-1 ≤ L ≤ 63)
42 N int64 // number within level (0 ≤ N, unbounded)
43 W int // width of tile (1 ≤ W ≤ 2**H; 2**H is complete tile)
75 func HashFromTile(t Tile, data []byte, index int64) (Hash, error) {
136 func ReadTileData(t Tile, r HashReader) ([]byte, error) {
171 func (t Tile) Path() string {
264 ReadTiles(tiles []Tile) (data [][]byte, err error)
269 SaveTiles(tiles []Tile, data [][]byte)
[all …]
/dports/lang/gcc11/gcc-11.2.0/libgo/go/golang.org/x/mod/sumdb/tlog/
H A Dtile.go39 type Tile struct { struct
40 H int // height of tile (1 ≤ H ≤ 30)
41 L int // level in tiling (-1 ≤ L ≤ 63)
42 N int64 // number within level (0 ≤ N, unbounded)
43 W int // width of tile (1 ≤ W ≤ 2**H; 2**H is complete tile)
75 func HashFromTile(t Tile, data []byte, index int64) (Hash, error) {
136 func ReadTileData(t Tile, r HashReader) ([]byte, error) {
171 func (t Tile) Path() string {
264 ReadTiles(tiles []Tile) (data [][]byte, err error)
269 SaveTiles(tiles []Tile, data [][]byte)
[all …]
/dports/lang/gcc11-devel/gcc-11-20211009/libgo/go/golang.org/x/mod/sumdb/tlog/
H A Dtile.go39 type Tile struct { struct
40 H int // height of tile (1 ≤ H ≤ 30)
41 L int // level in tiling (-1 ≤ L ≤ 63)
42 N int64 // number within level (0 ≤ N, unbounded)
43 W int // width of tile (1 ≤ W ≤ 2**H; 2**H is complete tile)
75 func HashFromTile(t Tile, data []byte, index int64) (Hash, error) {
136 func ReadTileData(t Tile, r HashReader) ([]byte, error) {
171 func (t Tile) Path() string {
264 ReadTiles(tiles []Tile) (data [][]byte, err error)
269 SaveTiles(tiles []Tile, data [][]byte)
[all …]
/dports/devel/liteide/liteide-x37.4/liteidex/vendor/golang.org/x/mod/sumdb/tlog/
H A Dtile.go39 type Tile struct { struct
40 H int // height of tile (1 ≤ H ≤ 30)
41 L int // level in tiling (-1 ≤ L ≤ 63)
42 N int64 // number within level (0 ≤ N, unbounded)
43 W int // width of tile (1 ≤ W ≤ 2**H; 2**H is complete tile)
75 func HashFromTile(t Tile, data []byte, index int64) (Hash, error) {
136 func ReadTileData(t Tile, r HashReader) ([]byte, error) {
171 func (t Tile) Path() string {
264 ReadTiles(tiles []Tile) (data [][]byte, err error)
269 SaveTiles(tiles []Tile, data [][]byte)
[all …]
/dports/security/snowflake-tor/snowflake-ead5a960d7fa19dc890ccbfc0765c5ab6629eaa9/vendor/golang.org/x/mod/sumdb/tlog/
H A Dtile.go39 type Tile struct { struct
40 H int // height of tile (1 ≤ H ≤ 30)
41 L int // level in tiling (-1 ≤ L ≤ 63)
42 N int64 // number within level (0 ≤ N, unbounded)
43 W int // width of tile (1 ≤ W ≤ 2**H; 2**H is complete tile)
75 func HashFromTile(t Tile, data []byte, index int64) (Hash, error) {
136 func ReadTileData(t Tile, r HashReader) ([]byte, error) {
171 func (t Tile) Path() string {
264 ReadTiles(tiles []Tile) (data [][]byte, err error)
269 SaveTiles(tiles []Tile, data [][]byte)
[all …]
/dports/net-im/dendrite/dendrite-0.5.1/vendor/golang.org/x/mod/sumdb/tlog/
H A Dtile.go39 type Tile struct { struct
40 H int // height of tile (1 ≤ H ≤ 30)
41 L int // level in tiling (-1 ≤ L ≤ 63)
42 N int64 // number within level (0 ≤ N, unbounded)
43 W int // width of tile (1 ≤ W ≤ 2**H; 2**H is complete tile)
75 func HashFromTile(t Tile, data []byte, index int64) (Hash, error) {
136 func ReadTileData(t Tile, r HashReader) ([]byte, error) {
171 func (t Tile) Path() string {
264 ReadTiles(tiles []Tile) (data [][]byte, err error)
269 SaveTiles(tiles []Tile, data [][]byte)
[all …]
/dports/sysutils/gomplate/gomplate-3.9.0/vendor/golang.org/x/mod/sumdb/tlog/
H A Dtile.go39 type Tile struct { struct
40 H int // height of tile (1 ≤ H ≤ 30)
41 L int // level in tiling (-1 ≤ L ≤ 63)
42 N int64 // number within level (0 ≤ N, unbounded)
43 W int // width of tile (1 ≤ W ≤ 2**H; 2**H is complete tile)
75 func HashFromTile(t Tile, data []byte, index int64) (Hash, error) {
136 func ReadTileData(t Tile, r HashReader) ([]byte, error) {
171 func (t Tile) Path() string {
264 ReadTiles(tiles []Tile) (data [][]byte, err error)
269 SaveTiles(tiles []Tile, data [][]byte)
[all …]

12345678910>>...40