[go: up one dir, main page]

US20120154399A1 - Hierarchical Bounding of Displaced Parametric Surfaces - Google Patents

Hierarchical Bounding of Displaced Parametric Surfaces Download PDF

Info

Publication number
US20120154399A1
US20120154399A1 US13/400,911 US201213400911A US2012154399A1 US 20120154399 A1 US20120154399 A1 US 20120154399A1 US 201213400911 A US201213400911 A US 201213400911A US 2012154399 A1 US2012154399 A1 US 2012154399A1
Authority
US
United States
Prior art keywords
parametric
patch
bounding
bounds
storing instructions
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Abandoned
Application number
US13/400,911
Inventor
Jacob Munkberg
Jon Hasselgren
Robert Toth
Tomas Akenine-Möller
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Individual
Original Assignee
Individual
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Individual filed Critical Individual
Priority to US13/400,911 priority Critical patent/US20120154399A1/en
Publication of US20120154399A1 publication Critical patent/US20120154399A1/en
Abandoned legal-status Critical Current

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING OR CALCULATING; COUNTING
    • G06TIMAGE DATA PROCESSING OR GENERATION, IN GENERAL
    • G06T15/003D [Three Dimensional] image rendering
    • G06T15/08Volume rendering
    • GPHYSICS
    • G06COMPUTING OR CALCULATING; COUNTING
    • G06TIMAGE DATA PROCESSING OR GENERATION, IN GENERAL
    • G06T15/003D [Three Dimensional] image rendering
    • G06T15/10Geometric effects
    • GPHYSICS
    • G06COMPUTING OR CALCULATING; COUNTING
    • G06TIMAGE DATA PROCESSING OR GENERATION, IN GENERAL
    • G06T17/00Three dimensional [3D] modelling, e.g. data description of 3D objects
    • G06T17/20Finite element generation, e.g. wire-frame surface description, tesselation
    • GPHYSICS
    • G06COMPUTING OR CALCULATING; COUNTING
    • G06TIMAGE DATA PROCESSING OR GENERATION, IN GENERAL
    • G06T17/00Three dimensional [3D] modelling, e.g. data description of 3D objects
    • G06T17/30Polynomial surface description

Definitions

  • This relates generally to graphics processing and, particularly, to tessellation in rendering systems, such as interactive, real time, and off-line/film rendering.
  • Modern graphics processors contain dedicated hardware for tessellating surfaces into many small triangles.
  • the DirectX 11 application programming interface (“DX11”) (API) adds three new stages to the graphics pipeline to support tessellation: the hull shader, the fixed-function tessellator and the domain shader.
  • the hull shader is executed once per patch and once per control point, typically to compute tessellation factors and change control point bases.
  • the fixed-function tessellator takes tessellation factors as inputs and generates a large set of vertex positions in the domain of the input primitive and connectivity information between vertices.
  • the connectivity information forms many small triangles.
  • the domain shader is executed once per generated vertex position from the tessellator.
  • a typical domain shader usage is evaluating the position and normal of a parametric surface, using, for example, a set of control points, barycentric coordinates, and a detailed texture as inputs.
  • the output is a displaced vertex defined by a set of attributes.
  • One attribute is the position, but the shader also can compute the normal/tangent/bi-tangent/texture coordinate/color/transparency or other attribute of the displaced vertex.
  • FIG. 1 is a graph showing the corner control points and the vectors b and t; by forming vectors between the corners of the patch, the OBB axes can be derived;
  • FIG. 2 shows an example of the resulting bounds after 25 steps of bounding a cubic polynomial with two discrete displacement peaks on the upper row, the images on the left using AABBs and the images on the right using OBBs, whose axes are determined by control points of the Bézier curve, while the lower row adds Perlin noise to the displacement shader;
  • FIG. 3 is a three-dimensional example of AABB versus OBB bounding with the same number of subdivisions
  • FIG. 4 shows the normal bounding technique for the normal patch with the leftmost figure showing the normal patch before normalization, the middle image showing each control point as normalized so that they map to the unit sphere, and, finally, the rightmost image shows the projections being bounded by a cone which is a conservative bound of the normalized normal for the patch;
  • FIG. 5 shows that given bounding cones for the two parametric derivatives denoted by T and B, a cone that bounds the cross product of any vector inside T and any vector inside B can be derived and is denoted here as N;
  • FIG. 6 shows an example of two different views using a screen space bounding box size as the sorting criteria with 16 steps of subdivision being performed, and the resulting difference in subdivision density;
  • FIG. 7 is a flow chart for bounding of a displaced Bézier surface patch and bounding algorithm in accordance with one embodiment of the present invention.
  • FIG. 8 is a flow chart for a more detailed flow for computing bounds of a displaced patch by finding an OBB for a displaced Bézier patch in accordance with one embodiment
  • FIG. 9 is a flow chart for one embodiment for defining the OBB for a base patch using control points
  • FIG. 10 is a flow chart for one embodiment for finding the normalized normal
  • FIG. 11 is a flow chart for another embodiment of finding the normalized normal.
  • FIG. 12 is a hardware depiction for one embodiment of the present invention.
  • Reducing the number of domain shader evaluations reduces the computational resources needed for that stage of a graphics pipeline. This can be done by culling patches which do not contribute to the final image. To make this culling efficient, an algorithm for computing hierarchical bounds of displaced surfaces may be used.
  • bounds for input primitives are needed to efficiently sort the input primitives into tiles.
  • a “bounding volume” is a volumetric object, such as a box or sphere, that encloses another object. Since the domain shader is programmable, it is hard to give conservative and tight bounds of the output positions, which may give rise to a need to sort the generated small triangles individually into tiles. This increases the memory requirements on the tile queues, increases bandwidth usage, and reduces the efficiency of occlusion culling on a patch primitive level.
  • bounds may, instead, be computed on the fly (block 12 ) based on the domain shader only without any need for a user specified parameter, as indicated in FIG. 7 .
  • the bounds may then be adaptively refined as the primitive is split into smaller sub-patches to create a hierarchy.
  • an algorithm enables conservative and tight bounding of dynamic displaced parametric surfaces, such as Bézier patches, using efficient normal bounding, oriented bounding boxes and min-max mipmap hierarchies of the displacement texture.
  • the patch may be culled (block 16 ). If not, then the primitive may be subjected to tessellation and domain shading (block 18 ).
  • both domain shader and tessellator tasks may be reduced for the patch in some embodiments. If the input patch is culled, then no tessellation and domain shading may be done in some embodiments. Similarly, if a sub-patch is culled, no further processing of that sub-patch may be done in some embodiments. Otherwise, the sub-patch is tessellated and domain shaded.
  • Collections of bi-cubic Bézier patches are popular rendering primitives for smooth surfaces.
  • Known algorithms may be used for translating Catmull-Clark subdivision surfaces to collections of such parametric patches, while faithfully approximating the limit surface of the recursive subdivision process. It is common to add displacements from high resolution textures in the direction of the normal vector of the patch in order to increase the detail of the final surface.
  • the Bézier patch with displacement may be used in a domain shader in the rendering API.
  • the Bézier patch is compactly represented by its control points, and this parametric surface representation can be efficiently evaluated in parallel (unlike recursive subdivision surfaces).
  • a Bézier patch, p(u,v), is a parametric surface, that is, a surface defined over two parametric coordinates, u and v.
  • the term “base patch” denotes the Bézier patch which has not yet been displaced, to distinguish it from the final displaced surface.
  • Bézier patches have the convex hull property and they can be easily bounded by their control points. Finding an axis-aligned bounding box (AABB) for a Bézier patch accounts for 3 min and 3 max operations per control point.
  • AABB axis-aligned bounding box
  • the control point cages of the subdivided patches converge quickly towards the underlying base patch. Furthermore, if the original patch is recursively split in two pieces, p A and p B , in each step, the de Casteljau steps needed to generate p A will generate the control points for p B as a side product. This allows for an efficient implementation.
  • the displacement minimum and maximums are looked up in a min/max texture hierarchy. Thereafter, in diamond 19 , a check determines whether the displacement is zero. If so, the model view projection is applied to the eight corners of the patch's bounding box (block 20 ) and the bounds are returned (block 23 ). If the displacement is not zero, normal bounding is done in block 21 using one of the techniques to be described hereinafter called TPATCH and NPATCH, before doing the model view projection transform (block 20 ) and returning the bounds (block 23 ). Finally, in block 23 , the model view projection transform is applied.
  • x t
  • y n cross product of t
  • z n and normalize each vector ( FIG. 9 , block 28 ).
  • the final coordinate system is: ( ⁇ circumflex over (x) ⁇ , ⁇ , ⁇ circumflex over (z) ⁇ ). This significantly reduces the size of the bounding boxes compared to using AABBs in most cases.
  • a Bézier patch P(u,v): R 2 ?R 3 is defined by:
  • c i,j are the control points
  • m and n are the degrees of the patch in the parametric coordinates, u an v, respectively.
  • B i (u) and B j (v) are Bernstein polynomials.
  • a i,j and b i,j are (scaled) differences of the control points of the base patch, and therefore vectors.
  • the surface normal (before normalization) is defined by:
  • the normalized normal is given by:
  • n ⁇ ⁇ ( u , v ) n n x 2 + n y 2 + n z 2 ( 11 )
  • the bi-degree of p(u,v) is (m,n) in the parametric coordinates (u,v)
  • the first order parametric derivatives have degrees (m ⁇ 1,n) and (m,n ⁇ 1).
  • the bi-degree of the patch after taking the cross product of the patches is then (m+n ⁇ 1, m+n ⁇ 1).
  • a patch representing the normal direction of a bi-cubic Bézier patch thus needs bi-degree (5,5) to be represented exactly.
  • Equation 11 The normalization operation (Equation 11) needs bi-degree 2(m+n ⁇ 1, m+n ⁇ 1) for an exact representation of the subexpressions: n x 2 ,n y 2 , and n z 2 .
  • the reciprocal square root cannot be represented exactly with Bernstein polynomials.
  • the operand to the reciprocal square root should always be larger than or equal to zero, since the operand is the squared length of the normal. If this is not true, inf or NaN may result.
  • n x 2 +n y 2 +n z 2 should be strictly greater than zero. This seems trivial at a first glance, as the square root of a sum of three squared (real) terms should be greater than or equal to zero. However, this can be difficult in practice as we use the bounding box of the control point cage for bounding, and there is no guarantee that all control points will be positive.
  • a normal vector Bézier patch is derived from the parametric derivatives ( FIG. 10 , block 32 ), then its control points are projected on the unit sphere ( FIG. 10 , block 34 ) and their solid angle on the unit sphere is bounded in an OBB coordinate frame ( FIG. 10 , block 36 ), which gives a conservative bound of the normalized normal.
  • this normal bounding approach NPATCH.
  • Equation 12 is written as:
  • a fast way to derive these bounds is to use the ⁇ circumflex over (z) ⁇ -axis from the OBB coordinate frame, which is an approximation of the patch's normal, and simply compute the minimal scalar product between any normalized control point and the ⁇ circumflex over (z) ⁇ -axis. This gives the cosine of the half-angle of a cone enclosing the normalized directions. This is illustrated in FIG. 4 .
  • v p,q For a bi-cubic Bézier patch, the computation of v p,q includes 144 cross products.
  • the binomial coefficients can be pre-computed in a small lookup table.
  • Coarser bounds can be obtained more quickly by forming two tangent cones from the control points of the first order parametric derivative patches ⁇ p/ ⁇ u and ⁇ p/ ⁇ v (see Equations 6 and 7).
  • the control points of the derivative patches are normalized and bounded on the unit sphere, (as shown in FIG. 4 ), forming two cones and T: ⁇ circumflex over (t) ⁇ , ⁇ t ⁇ and B: ⁇ circumflex over (b) ⁇ , ⁇ b ⁇ .
  • a cone, T is defined by a normalized axis ⁇ circumflex over (t) ⁇ and a half-angle ⁇ t .
  • a cone N:( ⁇ circumflex over (n) ⁇ , ⁇ ) that bounds all possible cross products of two vectors, one from each of T and B can be constructed. Its axis ⁇ circumflex over (n) ⁇ is in the direction t ⁇ b and its half-angle, ⁇ , is given by:
  • a unit box has the following two extreme vertices: ( ⁇ 1, ⁇ 1, ⁇ 1) and (+1,+1,+1). However, this will rarely happen, except for highly curved patches, since the OBB coordinate frame is computed from an approximation of the local surface tangent, bi-normal, and normal of the base patch.
  • Techniques for bounding texture lookups involve keeping two extra mipmap hierarchies. The first stores the maximum displacement value over each texture footprint and level and the second stores the minimum displacement value of the footprint. In general, when the parametric interval decreases, so do the texture bounds.
  • equation 20 can be further optimized.
  • the last step in most domain shaders is the matrix transformation to clip space, so the remaining part in obtaining bounds for q is the model view projection matrix, which does not depend on the parametric domain, and can be seen as a constant. This constant matrix is easily multiplied with the eight corners of the OBB obtained from the displaced patch d, resulting in bounds for the clip space position q. (The last step may not be needed when using hierarchical bounds for pre-tessellation sorting and ray tracing).
  • a priority queue of the bounding boxes of the subdomains may be maintained in some embodiments.
  • each sub-patch could alternatively be divided into a number of smaller sub-patches until each sub-patch is “small enough,” in terms of volume, surface area, or projected area, as examples).
  • the exact sorting criterion is application dependent, and may contain the screen-space extents of the bounding box, the depth values, or prioritize boxes intersecting a frustum plane for view frustum culling.
  • FIG. 6 illustrates a view-dependent subdivision criterion.
  • the OBB corners are tested against the frustum planes.
  • the subdivision criterion may be designed so that sub-patches straddling the camera frustum are prioritized, which efficiently culls geometry outside the clip planes.
  • the clip test results of the patch can also be used to guarantee that the entire patch is completely inside the view frustum, so the clip tests for generated triangles from the patch can possibly be bypassed.
  • subpatches Given a coarse depth buffer, subpatches can be culled if their bounding box is entirely occluded by already drawn primitives.
  • the subdivision criterion may be adopted so that sub-patches closer to the camera are processed first and sent to the rasterization stage of the pipeline, therefore increasing the likelihood of z-culling.
  • Backface culling is the hardest type of culling, due to the difficulty in efficiently bounding the geometric normal after displacement.
  • the normal bounds and a tight interval of the displacement bounds for the displaced surface normal can be derived.
  • the subdivision criterion can be adapted to target patches with high normal variation, increasing the likelihood of backface-culling of subpatches.
  • Tile-overlap can be reduced by hierarchical subdivision of the largest screen-space bounding box.
  • the subdivision criterion is tuned to reduce the total surface area of each OBB, similar to how a surface area heuristic builds acceleration data structures.
  • collision detection the subdivision criterion for reduced OBB volumes is tuned.
  • Hierarchical bounding volumes can be used for culling, as well as for sorting into tiles and ray tracing.
  • electronic data may be transformed to a visual form for display on a display.
  • the bounds of the displaced surfaces are needed before tessellation and domain shading occurs. These bounds can be used to bin (i.e. sort primitives into tile-specific queues) the displaced Bézier patches without doing any tessellation. The tessellation and domain shading would then occur when and if needed.
  • the use of hierarchical bounds may be useful for binning, view frustum culling, occlusion culling, and backface culling.
  • graphics processing techniques described herein may be implemented in various hardware architectures. For example, graphics functionality may be integrated within a chipset. Alternatively, a discrete graphics processor may be used. As still another embodiment, the graphics functions may be implemented by a general purpose processor, including a multicore processor.
  • the computer system 130 may include a hard drive 134 and a removable medium 136 , coupled by a bus 104 to a chipset core logic 110 .
  • a keyboard and mouse 120 may be coupled to the chipset core logic via bus 108 .
  • the core logic may couple to the graphics processor 112 , via a bus 105 , and the main or host processor 100 in one embodiment.
  • the graphics processor 112 may also be coupled by a bus 106 to a frame buffer 114 .
  • the frame buffer 114 may be coupled by a bus 107 to a display screen 118 .
  • a graphics processor 112 may be a multi-threaded, multi-core parallel processor using single instruction multiple data (SIMD) architecture.
  • SIMD single instruction multiple data
  • the pertinent code may be stored in any suitable semiconductor, magnetic, or optical memory, including the main memory 132 or any available memory within the graphics processor.
  • the code to perform the sequences of FIGS. 7-11 may be stored in a machine or computer readable medium, such as the memory 132 or the graphics processor 112 , and may be executed by the processor 100 or the graphics processor 112 in one embodiment.
  • FIGS. 8-12 are flow charts.
  • the sequences depicted in these flow charts may be implemented in hardware, software, or firmware.
  • a computer readable medium such as a semiconductor memory, a magnetic memory, or an optical memory may be used to store instructions and may be executed by a processor to implement the sequences shown in one or more of the flow charts depicted in FIGS. 8-13 .
  • references throughout this specification to “one embodiment” or “an embodiment” mean that a particular feature, structure, or characteristic described in connection with the embodiment is included in at least one implementation encompassed within the present invention. Thus, appearances of the phrase “one embodiment” or “in an embodiment” are not necessarily referring to the same embodiment. Furthermore, the particular features, structures, or characteristics may be instituted in other suitable forms other than the particular embodiment illustrated and all such forms may be encompassed within the claims of the present application.

Landscapes

  • Engineering & Computer Science (AREA)
  • Physics & Mathematics (AREA)
  • General Physics & Mathematics (AREA)
  • Theoretical Computer Science (AREA)
  • Computer Graphics (AREA)
  • Geometry (AREA)
  • Software Systems (AREA)
  • Mathematical Analysis (AREA)
  • Pure & Applied Mathematics (AREA)
  • Mathematical Physics (AREA)
  • Mathematical Optimization (AREA)
  • Algebra (AREA)
  • Image Generation (AREA)

Abstract

Hierarchical bounding of displaced parametric surfaces may be a very common use case for tessellation in interactive and real-time rendering. An efficient normal bounding technique may be used, together with min-max mipmap hierarchies and oriented bounding boxes. This provides substantially faster convergence for the bounding volumes of the displaced surface, without tessellating and displacing the surface in some embodiments. This bounding technique can be used for different types of culling, ray tracing, and to sort higher order primitives in tiling architectures.

Description

    CROSS-REFERENCE TO RELATED APPLICATIONS
  • This application is a continuation of U.S. patent application Ser. No. 12/755,506, filed on Apr. 7, 2010.
  • BACKGROUND
  • This relates generally to graphics processing and, particularly, to tessellation in rendering systems, such as interactive, real time, and off-line/film rendering.
  • Modern graphics processors contain dedicated hardware for tessellating surfaces into many small triangles. The DirectX 11 application programming interface (“DX11”) (API) adds three new stages to the graphics pipeline to support tessellation: the hull shader, the fixed-function tessellator and the domain shader. The hull shader is executed once per patch and once per control point, typically to compute tessellation factors and change control point bases. The fixed-function tessellator takes tessellation factors as inputs and generates a large set of vertex positions in the domain of the input primitive and connectivity information between vertices. The connectivity information forms many small triangles. The domain shader is executed once per generated vertex position from the tessellator. A typical domain shader usage is evaluating the position and normal of a parametric surface, using, for example, a set of control points, barycentric coordinates, and a detailed texture as inputs. The output is a displaced vertex defined by a set of attributes. One attribute is the position, but the shader also can compute the normal/tangent/bi-tangent/texture coordinate/color/transparency or other attribute of the displaced vertex.
  • BRIEF DESCRIPTION OF THE DRAWINGS
  • FIG. 1 is a graph showing the corner control points and the vectors b and t; by forming vectors between the corners of the patch, the OBB axes can be derived;
  • FIG. 2 shows an example of the resulting bounds after 25 steps of bounding a cubic polynomial with two discrete displacement peaks on the upper row, the images on the left using AABBs and the images on the right using OBBs, whose axes are determined by control points of the Bézier curve, while the lower row adds Perlin noise to the displacement shader;
  • FIG. 3 is a three-dimensional example of AABB versus OBB bounding with the same number of subdivisions;
  • FIG. 4 shows the normal bounding technique for the normal patch with the leftmost figure showing the normal patch before normalization, the middle image showing each control point as normalized so that they map to the unit sphere, and, finally, the rightmost image shows the projections being bounded by a cone which is a conservative bound of the normalized normal for the patch;
  • FIG. 5 shows that given bounding cones for the two parametric derivatives denoted by T and B, a cone that bounds the cross product of any vector inside T and any vector inside B can be derived and is denoted here as N;
  • FIG. 6 shows an example of two different views using a screen space bounding box size as the sorting criteria with 16 steps of subdivision being performed, and the resulting difference in subdivision density;
  • FIG. 7 is a flow chart for bounding of a displaced Bézier surface patch and bounding algorithm in accordance with one embodiment of the present invention;
  • FIG. 8 is a flow chart for a more detailed flow for computing bounds of a displaced patch by finding an OBB for a displaced Bézier patch in accordance with one embodiment;
  • FIG. 9 is a flow chart for one embodiment for defining the OBB for a base patch using control points;
  • FIG. 10 is a flow chart for one embodiment for finding the normalized normal;
  • FIG. 11 is a flow chart for another embodiment of finding the normalized normal; and
  • FIG. 12 is a hardware depiction for one embodiment of the present invention.
  • DETAILED DESCRIPTION
  • Reducing the number of domain shader evaluations reduces the computational resources needed for that stage of a graphics pipeline. This can be done by culling patches which do not contribute to the final image. To make this culling efficient, an algorithm for computing hierarchical bounds of displaced surfaces may be used.
  • Furthermore, in tile-based rendering architectures, bounds for input primitives are needed to efficiently sort the input primitives into tiles. A “bounding volume” is a volumetric object, such as a box or sphere, that encloses another object. Since the domain shader is programmable, it is hard to give conservative and tight bounds of the output positions, which may give rise to a need to sort the generated small triangles individually into tiles. This increases the memory requirements on the tile queues, increases bandwidth usage, and reduces the efficiency of occlusion culling on a patch primitive level.
  • These bounds may, instead, be computed on the fly (block 12) based on the domain shader only without any need for a user specified parameter, as indicated in FIG. 7. The bounds may then be adaptively refined as the primitive is split into smaller sub-patches to create a hierarchy. In one embodiment, an algorithm enables conservative and tight bounding of dynamic displaced parametric surfaces, such as Bézier patches, using efficient normal bounding, oriented bounding boxes and min-max mipmap hierarchies of the displacement texture. The patch may be culled (block 16). If not, then the primitive may be subjected to tessellation and domain shading (block 18).
  • Since the patch does not have to be sent to the tessellator, both domain shader and tessellator tasks may be reduced for the patch in some embodiments. If the input patch is culled, then no tessellation and domain shading may be done in some embodiments. Similarly, if a sub-patch is culled, no further processing of that sub-patch may be done in some embodiments. Otherwise, the sub-patch is tessellated and domain shaded.
  • Collections of bi-cubic Bézier patches are popular rendering primitives for smooth surfaces. Known algorithms may be used for translating Catmull-Clark subdivision surfaces to collections of such parametric patches, while faithfully approximating the limit surface of the recursive subdivision process. It is common to add displacements from high resolution textures in the direction of the normal vector of the patch in order to increase the detail of the final surface.
  • The Bézier patch with displacement may be used in a domain shader in the rendering API. The Bézier patch is compactly represented by its control points, and this parametric surface representation can be efficiently evaluated in parallel (unlike recursive subdivision surfaces).
  • A Bézier patch, p(u,v), is a parametric surface, that is, a surface defined over two parametric coordinates, u and v. The term “base patch” denotes the Bézier patch which has not yet been displaced, to distinguish it from the final displaced surface. A domain shader that evaluates a displaced Bézier patch at a parametric coordinate, (u,v), computes the base patch position, p(u,v), the base patch's normalized normal {circumflex over (n)}(u,v) and a displacement value (usually) taken from a texture, t(u,v). If the displacement acts in the base patch's normal direction, the domain shader (before multiplication with the model-view-projection matrix) is then:

  • d(u,v)=p(u,v)+{circumflex over (n)}(u,v)t(u,v)   (1)
  • Multiplying d(u,v) by the model view projection matrix, M, the clip space position, q, in homogeneous coordinates is obtained:

  • q(u,v)=Md(u,v)=M(p(u,v)+{circumflex over (n)}(u,v)t(u,v))   (2)
  • The normalized device coordinates are given by sx=qx/qw and sy=gy/qw.
  • A conservative bounds of q(u,v) over a parametric domain, where a<=u<=b and c<=v<=d can be found.
  • Next, we describe how we bound p(u,v). Bézier patches have the convex hull property and they can be easily bounded by their control points. Finding an axis-aligned bounding box (AABB) for a Bézier patch accounts for 3 min and 3 max operations per control point.
  • By repeatedly applying Bézier subdivision, the control point cages of the subdivided patches converge quickly towards the underlying base patch. Furthermore, if the original patch is recursively split in two pieces, pA and pB, in each step, the de Casteljau steps needed to generate pA will generate the control points for pB as a side product. This allows for an efficient implementation.
  • We can derive axes for an oriented bounding box (OBB) from the control points of the base patch defined axes. This box encloses the base patch more tightly than an AABB. For each of the two subdivided patches in the same iteration both the base patch, the normal patch, and the displacement texture and lookup is refined. Referring to FIG. 8 which shows steps which are used to compute the bounds of the displaced surface indicated in block 12 in FIG. 7, the base patch is subdivided along one axis using Bézier subdivision. The base patch bounding, indicated in block 14, involves finding the OBB axes from control points and projecting all control points on these axes. Then the minimum and maximum along each axis is located to derive an OBB that contains all of the control points, and the convex hull property of Bézier patches means that the surface is contained in this OBB.
  • Next, as indicated in block 15, the displacement minimum and maximums are looked up in a min/max texture hierarchy. Thereafter, in diamond 19, a check determines whether the displacement is zero. If so, the model view projection is applied to the eight corners of the patch's bounding box (block 20) and the bounds are returned (block 23). If the displacement is not zero, normal bounding is done in block 21 using one of the techniques to be described hereinafter called TPATCH and NPATCH, before doing the model view projection transform (block 20) and returning the bounds (block 23). Finally, in block 23, the model view projection transform is applied.
  • For Bézier patches, the vectors between the corner control points (FIG. 1) are summed to get two axes (FIG. 9, block 24). Given a patch with (m+1)x(n+1) control points, we denote the four corner control points C0,0, cm,0, c0,n and cm,n, and form the two vectors:

  • t=c m,0 −c 0,0 +c m,n −c 0,n   (3)

  • b=c 0,n −c 0,0 +c m,n −c m,0   (4)
  • t and b can be seen as approximate average gradients in the u and v parametric directions respectively. They do not have to be orthogonal. Their cross product (FIG. 9, block 26) gives a third axis: n=t cross product of b. To form an orthonormal coordinate system, we set x=t, y=n cross product of t, and z=n and normalize each vector (FIG. 9, block 28). The final coordinate system is: ({circumflex over (x)},ŷ,{circumflex over (z)}). This significantly reduces the size of the bounding boxes compared to using AABBs in most cases. More elaborate OBB fitting schemes based on the control point cage could be derived, but in practice, the simple approach above produces axes for OBBs that bound the surface tightly. The difference in quality between bounding with AABBs and OBBs is highlighted in FIG. 2 for curves and in FIG. 3 for a Bézier patch. For degenerate cases, we simply use an AABB. As we will show below, the OBB axes are also very useful in the normal bounding algorithms.
  • Bounding the patch normal, {circumflex over (n)}(u,v), over a domain is considerably more difficult than bounding the base position, p(u,v). The normal direction is computed as the cross product of two parametric derivatives of the base patch, p(u,v).
  • Following standard notation for tensor product Bézier surfaces, a Bézier patch P(u,v): R2?R3 is defined by:
  • p m , n ( u , v ) = i = 0 m j = 0 n c i , j B i m ( u ) B j n ( v ) ( 5 )
  • where ci,j are the control points, m and n are the degrees of the patch in the parametric coordinates, u an v, respectively. Bi(u) and Bj(v) are Bernstein polynomials.
  • The partial derivatives can be written as
  • p u ( u , v ) = j = 0 n i = 0 m - 1 a i , j B i m - 1 ( u ) B j n ( v ) ( 6 ) p v ( u , v ) = i = 0 m j = 0 n - 1 b i , j B j n - 1 ( v ) B j m ( u ) where ( 7 ) a i , j = m ( c i + 1 , j - c i , j ) , ( 8 ) b i , j = n ( c i , j + 1 - c i , j ) . ( 9 )
  • Note that ai,j and bi,j are (scaled) differences of the control points of the base patch, and therefore vectors. The surface normal (before normalization) is defined by:
  • n ( u , v ) = ( n x , n y , n z ) = p u ( u , v ) × p v ( u , v ) . ( 10 )
  • The normalized normal is given by:
  • n ^ ( u , v ) = n n x 2 + n y 2 + n z 2 ( 11 )
  • If the bi-degree of p(u,v) is (m,n) in the parametric coordinates (u,v), then the first order parametric derivatives have degrees (m−1,n) and (m,n−1). As we will see below, the bi-degree of the patch after taking the cross product of the patches is then (m+n−1, m+n−1). A patch representing the normal direction of a bi-cubic Bézier patch thus needs bi-degree (5,5) to be represented exactly.
  • To apply displacement, we need the normalized normal. The normalization operation (Equation 11) needs bi-degree 2(m+n−1, m+n−1) for an exact representation of the subexpressions: nx 2,ny 2, and nz 2. For a bi-cubic Bézier patch, these terms can be represented exactly as a bi-degree (10,10) Bézier patch. In many cases, this is prohibitively expensive (11·11=121 control points). Finally, the reciprocal square root cannot be represented exactly with Bernstein polynomials. In addition, the operand to the reciprocal square root should always be larger than or equal to zero, since the operand is the squared length of the normal. If this is not true, inf or NaN may result. Therefore the bounded representation of nx 2+ny 2+nz 2 should be strictly greater than zero. This seems trivial at a first glance, as the square root of a sum of three squared (real) terms should be greater than or equal to zero. However, this can be difficult in practice as we use the bounding box of the control point cage for bounding, and there is no guarantee that all control points will be positive.
  • Here, we describe a normal bounding algorithm, which avoids most of the problems discussed above. In summary, a normal vector Bézier patch is derived from the parametric derivatives (FIG. 10, block 32), then its control points are projected on the unit sphere (FIG. 10, block 34) and their solid angle on the unit sphere is bounded in an OBB coordinate frame (FIG. 10, block 36), which gives a conservative bound of the normalized normal. We denote this normal bounding approach NPATCH.
  • Recall that the normal is defined by:
  • n ( u , v ) = p u ( u , v ) × p v ( u , v ) j = 0 n i = 0 m - 1 a i , j B i m - 1 ( u ) B j n ( v ) × k = 0 m l = 0 n - 1 b k , l B k m ( u ) B l n - 1 ( v ) . ( 12 )
  • Using the formula for products of Bernstein polynomials:
  • B i m ( u ) B j n ( u ) = ( m i ) ( n j ) ( m + n i + j ) B i + j m + n ( u ) ( 13 )
  • Equation 12 is written as:
  • i , j , k , l a i , j × b k , l ( m - 1 i ) ( m k ) ( n j ) ( n - 1 l ) ( m + n - 1 i + k ) ( m + n - 1 j + 1 ) B i + k m + n - 1 ( u ) B j + 1 m + n - 1 ( v ) . ( 14 )
  • which is a patch of bi-degree (m+n−1, m+n−1) with control vectors, vp,q, given by:
  • v p , q = I + k = p j + 1 = q a i , j × b k , l ( m - 1 i ) ( m k ) ( n j ) ( n - 1 l ) ( m + n - 1 i + k ) ( m + n - 1 j + 1 ) ( 15 )
  • To conservatively bound the base patch's normal over the patch, we exploit the fact that the normal after normalization is of unit length. Therefore, we normalize the control vectors, vp,q, so that they are represented by points on the unit sphere.
  • A fast way to derive these bounds is to use the {circumflex over (z)}-axis from the OBB coordinate frame, which is an approximation of the patch's normal, and simply compute the minimal scalar product between any normalized control point and the {circumflex over (z)}-axis. This gives the cosine of the half-angle of a cone enclosing the normalized directions. This is illustrated in FIG. 4.
  • For a bi-cubic Bézier patch, the computation of vp,q includes 144 cross products. The binomial coefficients can be pre-computed in a small lookup table.
  • Note, however, that all correlation of which direction corresponds to which parametric coordinate is lost. The tightness of the approach depends on whether the unnormalized normal can be bound reasonably well, which can be hard over large domains, but becomes easier as the subdomain shrinks.
  • Coarser bounds can be obtained more quickly by forming two tangent cones from the control points of the first order parametric derivative patches ∂p/∂u and ∂p/∂v (see Equations 6 and 7). The control points of the derivative patches are normalized and bounded on the unit sphere, (as shown in FIG. 4), forming two cones and T:{{circumflex over (t)},αt} and B:{{circumflex over (b)},αb}. A cone, T, is defined by a normalized axis {circumflex over (t)} and a half-angle αt.
  • If the cones T and B do not overlap, a cone N:({circumflex over (n)},θ) that bounds all possible cross products of two vectors, one from each of T and B can be constructed. Its axis {circumflex over (n)} is in the direction t×b and its half-angle, θ, is given by:
  • sin θ = sin 2 α t + 2 sin α t sin α b cos β + sin 2 α b sin β ( 16 )
  • where â is the smallest of the two angles between the cone axes parallel to {circumflex over (t)} and {circumflex over (b)} respectively. The cone, N, bounds all the normalized normal over the patch. The cones T, B, and N are shown in FIG. 5.
  • We use the {circumflex over (t)} and {circumflex over (b)} axes derived above as axes for the cones T and B and the cone angles are found for cones T and B from the parametric derivative patches' control points (FIG. 11, block 40). The cosine of the cone angle átb) is simply the minimum dot product of any normalized control point from the tangent patch with the {circumflex over (t)}({circumflex over (b)}) axis. A normal cone is derived by computing the cross product of cones T and B (FIG. 11, block 42). The bounds for the normalized normal expressed in the OBB coordinate frame are:

  • ([−sin θ,sin θ],[−sin θ, sin θ],[ cos θ,1])   (17)
  • where θ is the cone half angle of the normal cone N. Using the equality sin2 è+cos2 è=1, we can derive the bounds of the normalized normal using the normal cone angle without using any trigonometric functions (FIG. 11, block 44). We denote this approach TPATCH.
  • Care must be taken to check that the two tangent cones do not overlap. The cones overlap if átb>â, which given αt<pi, αb<pi, and β<pi can be rewritten as:

  • cos αt cos αb−sin αt sin αb<cos β  (18)
  • If this condition is true, or if cos át<0,cos áb<0, we return the unit box in the OBB coordinate frame. A unit box has the following two extreme vertices: (−1,−1,−1) and (+1,+1,+1). However, this will rarely happen, except for highly curved patches, since the OBB coordinate frame is computed from an approximation of the local surface tangent, bi-normal, and normal of the base patch.
  • Techniques for bounding texture lookups involve keeping two extra mipmap hierarchies. The first stores the maximum displacement value over each texture footprint and level and the second stores the minimum displacement value of the footprint. In general, when the parametric interval decreases, so do the texture bounds.
  • The final bounds of the displacement vector, o={circumflex over (n)}t, is the product (on interval arithmetic form) of the interval from the texture lookup [tmin,tmax] times the intervals of the normalized normal vector along each axis. Using the notation [a,ā] to define an interval, where, a is the lower limit and ā is the upper limit, multiplication of two intervals is defined by:

  • [ a , a ]
    Figure US20120154399A1-20120621-P00001
    [ b , b ]=[min( ab , a b , a b , ab ), max( ab , a b , a b , ab )]  (19)
  • Hence, the interval version of the x-component of o, is:

  • [ox x]=[t, t]
    Figure US20120154399A1-20120621-P00001
    [{circumflex over (n)}{circumflex over (nx)},{circumflex over ( nx ]  (20)
  • and similarly for the other components. If the texture displacement is strictly positive, then equation 20 can be further optimized.
  • The last step in most domain shaders is the matrix transformation to clip space, so the remaining part in obtaining bounds for q is the model view projection matrix, which does not depend on the parametric domain, and can be seen as a constant. This constant matrix is easily multiplied with the eight corners of the OBB obtained from the displaced patch d, resulting in bounds for the clip space position q. (The last step may not be needed when using hierarchical bounds for pre-tessellation sorting and ray tracing).
  • Given an initial coarse subdivision of the patch, a priority queue of the bounding boxes of the subdomains may be maintained in some embodiments. (For example, each sub-patch could alternatively be divided into a number of smaller sub-patches until each sub-patch is “small enough,” in terms of volume, surface area, or projected area, as examples). In each following subdivision step, we take the top element of the queue, subdivide it further, and insert the subdivided boxes back into the queue.
  • The exact sorting criterion is application dependent, and may contain the screen-space extents of the bounding box, the depth values, or prioritize boxes intersecting a frustum plane for view frustum culling. FIG. 6 illustrates a view-dependent subdivision criterion.
  • For view frustum culling, the OBB corners (in clip-space) are tested against the frustum planes. The subdivision criterion may be designed so that sub-patches straddling the camera frustum are prioritized, which efficiently culls geometry outside the clip planes. The clip test results of the patch can also be used to guarantee that the entire patch is completely inside the view frustum, so the clip tests for generated triangles from the patch can possibly be bypassed.
  • Given a coarse depth buffer, subpatches can be culled if their bounding box is entirely occluded by already drawn primitives. The subdivision criterion may be adopted so that sub-patches closer to the camera are processed first and sent to the rasterization stage of the pipeline, therefore increasing the likelihood of z-culling.
  • Backface culling is the hardest type of culling, due to the difficulty in efficiently bounding the geometric normal after displacement. However, given the tessellation rate, the normal bounds and a tight interval of the displacement, bounds for the displaced surface normal can be derived. Further, the subdivision criterion can be adapted to target patches with high normal variation, increasing the likelihood of backface-culling of subpatches.
  • After computing a bounded representation of the displaced Bézier patch, we can use the bounds for pre-tessellation sorting into tiles. Tile-overlap can be reduced by hierarchical subdivision of the largest screen-space bounding box.
  • In a ray tracing environment, the subdivision criterion is tuned to reduce the total surface area of each OBB, similar to how a surface area heuristic builds acceleration data structures. In collision detection, the subdivision criterion for reduced OBB volumes is tuned.
  • Hierarchical bounding volumes can be used for culling, as well as for sorting into tiles and ray tracing. Using the techniques described herein, electronic data may be transformed to a visual form for display on a display.
  • To efficiently support the DX-11 tessellation pipeline stages, in a tiling architecture, the bounds of the displaced surfaces are needed before tessellation and domain shading occurs. These bounds can be used to bin (i.e. sort primitives into tile-specific queues) the displaced Bézier patches without doing any tessellation. The tessellation and domain shading would then occur when and if needed. The use of hierarchical bounds may be useful for binning, view frustum culling, occlusion culling, and backface culling.
  • The graphics processing techniques described herein may be implemented in various hardware architectures. For example, graphics functionality may be integrated within a chipset. Alternatively, a discrete graphics processor may be used. As still another embodiment, the graphics functions may be implemented by a general purpose processor, including a multicore processor.
  • The computer system 130, shown in FIG. 12, may include a hard drive 134 and a removable medium 136, coupled by a bus 104 to a chipset core logic 110. A keyboard and mouse 120, or other conventional components, may be coupled to the chipset core logic via bus 108. The core logic may couple to the graphics processor 112, via a bus 105, and the main or host processor 100 in one embodiment. The graphics processor 112 may also be coupled by a bus 106 to a frame buffer 114. The frame buffer 114 may be coupled by a bus 107 to a display screen 118. In one embodiment, a graphics processor 112 may be a multi-threaded, multi-core parallel processor using single instruction multiple data (SIMD) architecture.
  • In the case of a software implementation, the pertinent code may be stored in any suitable semiconductor, magnetic, or optical memory, including the main memory 132 or any available memory within the graphics processor. Thus, in one embodiment, the code to perform the sequences of FIGS. 7-11 may be stored in a machine or computer readable medium, such as the memory 132 or the graphics processor 112, and may be executed by the processor 100 or the graphics processor 112 in one embodiment.
  • FIGS. 8-12 are flow charts. In some embodiments, the sequences depicted in these flow charts may be implemented in hardware, software, or firmware. In a software embodiment, a computer readable medium, such as a semiconductor memory, a magnetic memory, or an optical memory may be used to store instructions and may be executed by a processor to implement the sequences shown in one or more of the flow charts depicted in FIGS. 8-13.
  • References throughout this specification to “one embodiment” or “an embodiment” mean that a particular feature, structure, or characteristic described in connection with the embodiment is included in at least one implementation encompassed within the present invention. Thus, appearances of the phrase “one embodiment” or “in an embodiment” are not necessarily referring to the same embodiment. Furthermore, the particular features, structures, or characteristics may be instituted in other suitable forms other than the particular embodiment illustrated and all such forms may be encompassed within the claims of the present application.
  • While the present invention has been described with respect to a limited number of embodiments, those skilled in the art will appreciate numerous modifications and variations therefrom. It is intended that the appended claims cover all such modifications and variations as fall within the true spirit and scope of this present invention.

Claims (33)

1. A method comprising:
using a computer processor to bound an undisplaced Bézier patch representing a surface to be tessellated using object oriented bounding boxes.
2. The method of claim 1 further comprising:
bounding a parametric surface using a coordinate frame derived from the parametric surface; and
bounding a displacement vector in the same coordinate frame.
3. The method of claim 2 including computing hierarchical bounds of the displaced parametric surface.
4. The method of claim 3 including adaptively refining bounds as the parametric surface is split into smaller sub-patches by an application-defined priority metric.
5. The method of claim 4 wherein bounding includes refining position, normal and texture bounds.
6. The method of claim 5 including repeatedly applying Bézier subdivision until an application-defined threshold is met.
7. The method of claim 2 including averaging vectors between corner control points to get two axes, taking the cross product of the two axes, and normalizing each vector to form an object-oriented bounding box coordinate frame.
8. The method of claim 7 including deriving a normal vector Bézier patch from parametric derivatives, projecting control points on a unit sphere, and bounding a solid angle on a unit sphere in an object oriented bounding box coordinate frame to give a bound of the base patch's normalized normal over the patch.
9. The method of claim 7 including using cones for deriving bounds of normalized normals of a base patch.
10. The method of claim 7 including forming a first cone from a derivative in one parametric direction, forming a second cone from a derivative in a different parametric direction, and forming a third cone by computing a cross product of the first and second cones in the coordinate frame.
11. The method of claim 2 including culling sub-patches, tessellation, and domain shading.
12. The method of claim 2 including using the obtained bounds to sort higher order primitives into screen-space tiles.
13. The method of claim 2 including building a hierarchy of bounding volumes for ray tracing.
14. The method of claim 2 including transforming said surface to a visual form displayed on a computer display.
15. A computer readable medium storing instructions executed by a computer to:
use a computer processor to bound an undisplaced Bézier patch representing a surface to be tessellated using object oriented bounding boxes.
16. The medium of claim 15 further storing instructions executed by a computer to:
bound a parametric surface using a parametric frame derived from the parametric surface; and
bound a displacement vector in the same coordinate frame.
17. The medium of claim 16 further storing instructions to compute hierarchical bounds of the displaced parametric surface.
18. The medium of claim 17 further storing instructions to adaptive refine bounds as the parametric surface is split into smaller sub-patches.
19. The medium of claim 18 further storing instructions to refine the position, normal and texture bounds during bounding.
20. The medium of claim 19 further storing instructions to repeatedly apply Bézier subdivision until application defined threshold is met.
21. The medium of claim 16 further storing instructions to average vectors between corner control points to get two axes, take the cross product of the two axes, and normalize each vector to form an object oriented bounding box coordinate frame.
22. The medium of claim 21 further storing instructions to derive a normal vector Bézier patch from parametric derivatives, project control points on a unit sphere, and bound the solid angle of the unit's sphere in an object oriented bounding box coordinate frame to give a bound of the base patch's normalized normal over the patch.
23. The medium of claim 20 further storing instructions to form a first cone from a derivative in one parametric direction, form a second cone from a derivative in a different parametric direction, and form a third cone by computing a cross product of the first and second cones in the coordinate frame.
24. The medium of claim 16 further storing instructions to cull sub-patches, tessellation and domain shading.
25. The medium of claim 16 further storing instructions to build a hierarchy of bounding volumes for ray tracing.
26. An apparatus comprising:
a processor to bound an undisplaced Bézier patch representing a surface to be tessellated using object oriented bounding boxes; and
a storage coupled to said processor.
27. The apparatus of claim 26, said processor to bound a parametric surface using a coordinate frame derived from the parametric surface and to bound a displacement vector in the same coordinate frame.
28. The apparatus of claim 27 including a display to display an image resulting from the bounding of the displaced parametric surface.
29. The apparatus of claim 27, said storage to store instructions to compute hierarchical bounds of the displaced parametric surface.
30. The apparatus of claim 29, said storage to store instructions to adaptively refine bounds as the parametric surface is split into smaller sub-patches by an application-defined priority metric.
31. The apparatus of claim 29, said storage storing instructions to refine positive, normal and texture bounds.
32. The apparatus of claim 31, said storage storing instructions to repeatedly apply Bézier subdivision until an application-defined threshold is met.
33. The apparatus of claim 27, said storage storing instructions to average vectors between corner control points to get two axes, take the cross product of the two axes, and normalize each vector to form an object-oriented bounding box coordinate frame.
US13/400,911 2010-04-07 2012-02-21 Hierarchical Bounding of Displaced Parametric Surfaces Abandoned US20120154399A1 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
US13/400,911 US20120154399A1 (en) 2010-04-07 2012-02-21 Hierarchical Bounding of Displaced Parametric Surfaces

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
US12/755,506 US8144147B2 (en) 2010-04-07 2010-04-07 Hierarchical bounding of displaced parametric surfaces
US13/400,911 US20120154399A1 (en) 2010-04-07 2012-02-21 Hierarchical Bounding of Displaced Parametric Surfaces

Related Parent Applications (1)

Application Number Title Priority Date Filing Date
US12/755,506 Continuation US8144147B2 (en) 2010-04-07 2010-04-07 Hierarchical bounding of displaced parametric surfaces

Publications (1)

Publication Number Publication Date
US20120154399A1 true US20120154399A1 (en) 2012-06-21

Family

ID=44072155

Family Applications (2)

Application Number Title Priority Date Filing Date
US12/755,506 Expired - Fee Related US8144147B2 (en) 2010-04-07 2010-04-07 Hierarchical bounding of displaced parametric surfaces
US13/400,911 Abandoned US20120154399A1 (en) 2010-04-07 2012-02-21 Hierarchical Bounding of Displaced Parametric Surfaces

Family Applications Before (1)

Application Number Title Priority Date Filing Date
US12/755,506 Expired - Fee Related US8144147B2 (en) 2010-04-07 2010-04-07 Hierarchical bounding of displaced parametric surfaces

Country Status (6)

Country Link
US (2) US8144147B2 (en)
JP (1) JP5111638B2 (en)
CN (1) CN102214369B (en)
DE (1) DE102011016347A1 (en)
GB (1) GB2479461B (en)
TW (1) TWI443602B (en)

Cited By (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20200320228A1 (en) * 2019-04-02 2020-10-08 Autodesk, Inc. Hybrid surface modelling with subdivision surfaces and nurbs surfaces
US11335074B2 (en) * 2016-12-19 2022-05-17 Hewlett-Packard Development Company, L.P. Arrangement determination for 3D fabricated parts
US20230017659A1 (en) * 2021-07-01 2023-01-19 Adobe Inc. Displacement-centric acceleration for ray tracing
US12096027B2 (en) 2019-05-22 2024-09-17 Nokia Technologies Oy Method, an apparatus and a computer program product for volumetric video encoding and decoding

Families Citing this family (23)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US8570324B2 (en) * 2009-10-12 2013-10-29 Nvidia Corporation Method for watertight evaluation of an approximate catmull-clark surface
US9449420B2 (en) 2011-12-30 2016-09-20 Intel Corporation Reducing the domain shader/tessellator invocations
FR2991448B1 (en) * 2012-06-01 2015-01-09 Centre Nat Rech Scient METHOD OF THREE-DIMENSIONAL STEREO-CORRELATION MEASUREMENTS USING A PARAMETRIC REPRESENTATION OF THE MEASUREMENT OBJECT
KR101980200B1 (en) * 2012-07-12 2019-05-20 삼성전자주식회사 Apparatus and method of performing tile binning of bezier curve
US9275498B2 (en) * 2012-08-09 2016-03-01 Qualcomm Incorporated GPU-accelerated path rendering
US9619853B2 (en) 2012-08-09 2017-04-11 Qualcomm Incorporated GPU-accelerated path rendering
CN103226846B (en) * 2013-03-22 2015-10-28 浙江工业大学 A kind of three dimensional sculpture method based on Freehandhand-drawing lines
US9401034B2 (en) * 2013-04-30 2016-07-26 Microsoft Technology Licensing, Llc Tessellation of two-dimensional curves using a graphics pipeline
KR102104057B1 (en) 2013-07-09 2020-04-23 삼성전자 주식회사 Tessellation method for assigning a tessellation factor per point and devices performing the method
CN103345529B (en) * 2013-07-24 2017-02-08 中国科学院自动化研究所 Multi-index observation data ordering method and device based on Bezier curve
KR102109130B1 (en) * 2013-08-12 2020-05-08 삼성전자주식회사 Graphics processing unit, method thereof, and devices having the same
KR102066533B1 (en) 2013-11-19 2020-01-16 삼성전자 주식회사 Method for domain shading and devices operating the same
CN104616343B (en) * 2015-01-20 2017-09-22 武汉大势智慧科技有限公司 A kind of texture gathers the method and system mapped online in real time
GB2533444B (en) * 2015-06-05 2017-08-16 Imagination Tech Ltd Tessellation method
GB2539042B (en) 2015-06-05 2019-08-21 Imagination Tech Ltd Tessellation method using displacement factors
US10037625B2 (en) * 2016-09-15 2018-07-31 Intel Corporation Load-balanced tessellation distribution for parallel architectures
US10235811B2 (en) 2016-12-29 2019-03-19 Intel Corporation Replicating primitives across multiple viewports
US10846914B2 (en) * 2018-01-11 2020-11-24 Sony Interactive Entertainment Inc. Back-facing patch culling with displacement
US10628910B2 (en) 2018-09-24 2020-04-21 Intel Corporation Vertex shader with primitive replication
CN113628316B (en) * 2020-05-08 2023-12-01 辉达公司 Techniques for anisotropic texture filtering using ray cones
US11443475B2 (en) * 2020-05-08 2022-09-13 Nvidia Corporation Techniques for ray cone tracing and texture filtering
US11315299B1 (en) 2020-11-13 2022-04-26 Unity Technologies Sf Method for computation of local densities for virtual fibers
US20250111585A1 (en) * 2023-09-28 2025-04-03 Advanced Micro Devices, Inc. Technique for generating a bounding volume hierarchy

Citations (10)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5357600A (en) * 1992-10-15 1994-10-18 Sun Microsystems, Inc. Method and apparatus for the rendering of curved surfaces using a cone of normals
US5638503A (en) * 1994-07-07 1997-06-10 Adobe Systems, Inc. Method and apparatus for generating bitmaps from outlines containing bezier curves
US6256038B1 (en) * 1998-12-10 2001-07-03 The Board Of Trustees Of The Leland Stanford Junior University Parameterized surface fitting technique having independent control of fitting and parameterization
US6429867B1 (en) * 1999-03-15 2002-08-06 Sun Microsystems, Inc. System and method for generating and playback of three-dimensional movies
US20040090437A1 (en) * 2002-11-12 2004-05-13 Akira Uesaki Curved surface image processing apparatus and curved surface image processing method
US20050179686A1 (en) * 2004-02-12 2005-08-18 Pixar Flexible and modified multiresolution geometry caching based on ray differentials
US7292250B2 (en) * 2004-03-31 2007-11-06 Dreamworks Animation, Llc Character deformation pipeline for computer-generated animation
US7369691B2 (en) * 2003-03-20 2008-05-06 Kabushiki Kaisha Toshiba Processor for analyzing tubular structure such as blood vessels
US7483024B2 (en) * 2003-12-31 2009-01-27 Autodesk, Inc. Accelerated ray-object intersection
US7532213B2 (en) * 2000-07-28 2009-05-12 Adrian Sfarti Bicubic surface real time tesselation unit

Family Cites Families (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JP3436008B2 (en) * 1996-08-20 2003-08-11 富士ゼロックス株式会社 Drawing processing device
US6556206B1 (en) * 1999-12-09 2003-04-29 Siemens Corporate Research, Inc. Automated viewpoint selection for 3D scenes
US6738062B1 (en) * 2001-01-10 2004-05-18 Nvidia Corporation Displaced subdivision surface representation
US8217938B2 (en) * 2007-05-31 2012-07-10 Ford Global Technologies, Llc Method and apparatus for determining item orientation
JP2009086842A (en) * 2007-09-28 2009-04-23 Fujitsu Ltd Harness design support apparatus, method and program
WO2009093956A1 (en) * 2008-01-23 2009-07-30 Swiftfoot Graphics Ab Method, apparatus, and computer program product for improved graphics performance
US8698802B2 (en) * 2009-10-07 2014-04-15 Nvidia Corporation Hermite gregory patch for watertight tessellation

Patent Citations (10)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5357600A (en) * 1992-10-15 1994-10-18 Sun Microsystems, Inc. Method and apparatus for the rendering of curved surfaces using a cone of normals
US5638503A (en) * 1994-07-07 1997-06-10 Adobe Systems, Inc. Method and apparatus for generating bitmaps from outlines containing bezier curves
US6256038B1 (en) * 1998-12-10 2001-07-03 The Board Of Trustees Of The Leland Stanford Junior University Parameterized surface fitting technique having independent control of fitting and parameterization
US6429867B1 (en) * 1999-03-15 2002-08-06 Sun Microsystems, Inc. System and method for generating and playback of three-dimensional movies
US7532213B2 (en) * 2000-07-28 2009-05-12 Adrian Sfarti Bicubic surface real time tesselation unit
US20040090437A1 (en) * 2002-11-12 2004-05-13 Akira Uesaki Curved surface image processing apparatus and curved surface image processing method
US7369691B2 (en) * 2003-03-20 2008-05-06 Kabushiki Kaisha Toshiba Processor for analyzing tubular structure such as blood vessels
US7483024B2 (en) * 2003-12-31 2009-01-27 Autodesk, Inc. Accelerated ray-object intersection
US20050179686A1 (en) * 2004-02-12 2005-08-18 Pixar Flexible and modified multiresolution geometry caching based on ray differentials
US7292250B2 (en) * 2004-03-31 2007-11-06 Dreamworks Animation, Llc Character deformation pipeline for computer-generated animation

Cited By (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US11335074B2 (en) * 2016-12-19 2022-05-17 Hewlett-Packard Development Company, L.P. Arrangement determination for 3D fabricated parts
US20200320228A1 (en) * 2019-04-02 2020-10-08 Autodesk, Inc. Hybrid surface modelling with subdivision surfaces and nurbs surfaces
US11928391B2 (en) * 2019-04-02 2024-03-12 Autodesk, Inc. Hybrid surface modelling with subdivision surfaces and NURBS surfaces
US12096027B2 (en) 2019-05-22 2024-09-17 Nokia Technologies Oy Method, an apparatus and a computer program product for volumetric video encoding and decoding
US20230017659A1 (en) * 2021-07-01 2023-01-19 Adobe Inc. Displacement-centric acceleration for ray tracing
US11908063B2 (en) * 2021-07-01 2024-02-20 Adobe Inc. Displacement-centric acceleration for ray tracing

Also Published As

Publication number Publication date
JP2011238213A (en) 2011-11-24
US20110248997A1 (en) 2011-10-13
GB2479461A (en) 2011-10-12
US8144147B2 (en) 2012-03-27
TWI443602B (en) 2014-07-01
GB201105960D0 (en) 2011-05-18
CN102214369B (en) 2014-03-05
JP5111638B2 (en) 2013-01-09
GB2479461B (en) 2012-12-19
TW201205500A (en) 2012-02-01
DE102011016347A1 (en) 2011-12-08
CN102214369A (en) 2011-10-12

Similar Documents

Publication Publication Date Title
US8144147B2 (en) Hierarchical bounding of displaced parametric surfaces
US11222462B2 (en) Method, apparatus, and computer program product for improved graphics performance
Shirmun et al. The cone of normals technique for fast processing of curved patches
US7102647B2 (en) Interactive horizon mapping
Von Herzen et al. Accurate triangulations of deformed, intersecting surfaces
Donnelly Per-pixel displacement mapping with distance functions
EP2057605B1 (en) System and methods for real-time rendering of deformable geometry with global illumination
US7868887B1 (en) Rendering rational quadratic Bézier curves on a GPU
US8411087B2 (en) Non-linear beam tracing for computer graphics
US8743114B2 (en) Methods and systems to determine conservative view cell occlusion
Wihelms et al. Direct volume rendering of curvilinear volumes
US7545375B2 (en) View-dependent displacement mapping
Haber et al. Smooth approximation and rendering of large scattered data sets
US20020135591A1 (en) Method, system, and computer program product for visibility culling of terrain
US9367943B2 (en) Seamless fracture in a production pipeline
Hurtado et al. Enveloping CAD models for visualization and interaction in XR applications
US7586494B2 (en) Surface detail rendering using leap textures
Li et al. A GPU-based voxelization approach to 3D Minkowski sum computation
Munkberg et al. Efficient bounding of displaced Bézier patches.
Vyatkin et al. Combined method of visualization of functionally defined surfaces and three-dimensional textures
Loop et al. Effective Back-Patch Culling for Hardware Tessellation.
Pizarro Lozano Rendering Curved Triangles on the GPU

Legal Events

Date Code Title Description
STCB Information on status: application discontinuation

Free format text: ABANDONED -- FAILURE TO RESPOND TO AN OFFICE ACTION