This disclosure pertains to the operation of graphics systems and to a variety of architectures for design and/or operation of a graphics system spanning from the output of an application program and extending to the presentation of visual content in the form of pixels or otherwise. In general, many embodiments of the invention contemplate a high level graphics framework to receive graphic requests from an application. The graphics request is analyzed by the high-level framework and sorted into groups of command statements for execution. The command statements are sorted to cause the most efficient processing by the underlying hardware and the groups are submitted separately to a GPU using a low-level standard library that facilitates close control of the hardware functionality.
|
9. A non-transitory program storage device, readable by a processor and comprising instructions stored thereon to cause one or more processors to:
receive, by a high-level framework, a logical representation of a requested graphic for immediate display on a display element of a computer system, wherein the requested graphic is not pre-known to the high-level framework;
evaluate, using the high-level framework, the logical representation of the requested graphic and to derive one or more statements representing commands to a target hardware;
sort the one or more statements into two or more groups of statements;
determine if a first group of statements is ready for rendering;
if the first group of statements is ready for rendering, commit the first group of statements and render to a first pre-rendering buffer;
determine if a second group of statements is ready for rendering;
if the second group of statements is ready for rendering, commit the second group of statements and render to a second pre-rendering buffer;
composite the contents of the first pre-rendering buffer and the second pre-rendering buffer into a frame buffer for display on the display element.
1. A method comprising:
receiving, by a high-level framework, a logical representation of a requested graphic for immediate display on a display element of a computer system, wherein the requested graphic is not pre-known to the high level framework;
evaluating, using the high-level framework, the logical representation of the requested graphic and to derive one or more statements representing commands to a target hardware, wherein the one or more statements are expressed in a program interface for a standard low-level graphics library;
sorting the one or more statements into two or more groups of statements;
determining if a first group of statements is ready for rendering;
if the first group of statements is ready for rendering, committing the first group of statements using the low-level graphics library and rendering to a first pre-rendering buffer;
determining if a second group of statements is ready for rendering;
if the second group of statements is ready for rendering, committing the second group of statements using the low-level graphics library and rendering to a second pre-rendering buffer;
compositing the contents of the first pre-rendering buffer and the second pre-rendering buffer into a frame buffer for display on the display element.
16. A system comprising:
one or more CPUs;
one or more GPUs for processing a graphics request;
a memory for storing program instructions for the one or more CPUs, where certain instructions, when executed, cause the one or more CPUs to:
receive, by a high-level framework, a logical representation of a requested graphic, wherein the requested graphic is for immediate display on a display element of a computer system, and wherein the requested graphic is not pre-known to the high-level framework;
evaluate, using the high-level framework, the logical representation of the requested graphic;
derive, using the high-level framework, one or more statements representing commands to a target hardware, wherein the one or more statements are expressed in a program interface for a standard low-level graphics library;
sort the one or more statements into two or more groups of statements;
determine if a first group of statements is ready for rendering;
if the first group of statements is ready for rendering, commit the first group of statements using the low-level graphics library and render to a first pre-rendering buffer;
determine if a second group of statements is ready for rendering;
if the second group of statements is ready for rendering, commit the second group of statements using the low-level graphics library and render to a second pre-rendering buffer;
composite the contents of the first pre-rendering buffer and the second pre-rendering buffer into a frame buffer for display on the display element.
2. The method of
3. The method of
4. The method of
5. The method of
6. The method of
7. The method of
determining if further statements will be added to the first group of statements;
determining if computer system memory is constrained;
determining if evaluation the logical representation of the requested graphic is complete; and,
determining if all aspects of the logical representation of the requested graphic that require pre-rendering have been pre-rendered.
8. The method of
sorting the one or more statements according to required GPU state;
sorting the one or more statements according to target hardware; and,
sorting the one or more statements according to a graphic surface represented by each statement.
10. The non-transitory program storage device of
11. The non-transitory program storage device of
12. The non-transitory program storage device of
if further statements will be added to the first group of statements;
if computer system memory is constrained;
if evaluation of the logical representation of the requested graphic is complete; and,
if all aspects of the logical representation of the requested graphic that require pre-rendering have been pre-rendered.
13. The non-transitory program storage device of
14. The non-transitory program storage device of
15. The non-transitory program storage device of
required GPU state;
target hardware; and,
a graphic surface represented by each statement.
17. The system of
18. The system of
if further statements will be added to the first group of statements;
if computer system memory is constrained;
if evaluation of the logical representation of the requested graphic is complete; and,
if all aspects of the logical representation of the requested graphic that require pre-rendering have been pre-rendered.
19. The system of
required GPU state;
target hardware; and,
a graphic surface represented by each statement.
20. The system of
|
The inventions disclosed herein relate to the field of graphics processing and, without limitation, the software manipulations that bring graphics requests from an application to the rendering or presenting hardware.
Graphics processor units (GPUs) have become important for processing data-parallel graphics tasks. Developers now recognize that non-graphics data-parallel tasks can also be handled by GPUs, taking advantage of their massive parallel capabilities. Vendors and standards organizations have created application programming interfaces (APIs) that make graphics data-parallel tasks easier to program because of the high level of developer programming interaction. However, there are also low-level APIs (libraries/frameworks, etc.) that reside closer to hardware and are generally employed by applying the output of the higher level APIs. In other words, the higher level APIs generally simply prepare program code for application to the lower level APIs.
The new landscape of graphics processing enables high levels of speed and efficiency. To access these benefits, however, custom programming and other mechanisms are generally required. For example, one standard process for a rendering pipeline begins when an application makes a graphics change resulting in a change to the current scene graph. The application uses a high-level framework/library to effect this change and, from the point of view of the application, the changes are submitted to a rendering service or rendering server. The high-level framework/library then walks the scene graph and issues drawing commands (potentially to a lower-level framework/library) to re-paint the appropriate section of the screen. Thus, the hardware is used to create the new pixels for the screen. However, often several rendering passes may be employed prior to committing content to the frame buffer. The multiple rendering passes are sometimes employed to incrementally move the data toward its displayable form. For example, effects may be sequentially applied to the same graphic element—lighting, shadows, reflections, specular illumination, etc. In addition, multiple rendering passes may be employed for creating pieces or subsets of a single frame to be composited later to form the whole frame. In any event, the use of multiple rendering passes causes latency that can be a factor depending upon the speed of the system and the complexity and rate of change of the graphics. For example, in gaming applications, the extent and complexity of graphics can be very resource demanding. Fortunately, for most gaming applications, the universe of displayable graphics is largely pre-determined. For example, a game application typically knows all the assets, state vectors, and geometries in advance. In other words, when a game loads or a game level loads, the application typically knows the substantial universe of displayable graphics that may be shown by the game. Furthermore, even considering games where the substantial universe is not known, most usually a great majority of the graphics are known in advance. This pre-determined knowledge of the displayable graphics allows gaming applications to pre-render graphic pieces and thereby avoid latency issues at runtime—i.e. at the time the graphics are demanded for the screen.
Unfortunately, much of the content used for normal display in a computing environment is not pre-known or pre-determined. For example, normal user interface actions, web pages, and even stored documents like PDFs are generally unknown to the graphics system prior to their first associated graphics request. Sometimes, the graphics are even unknown to the appropriate application (e.g. Acrobat reader does not know the contents of a document until the user opens the document). Furthermore, gaming applications are designed with the notion of heavy graphics in mind, so the applications themselves can help manage the workload and employ non-standard graphical tools and techniques.
This disclosure relates generally to the field of computer programming. More particularly, but not by way of limitation, it relates to the efficient real-time rendering of graphics that are not pre-known or pre-determined. With respect to these types of graphic assets, many embodiments of the invention break up the rendering task into command statements for execution on graphics hardware such as a GPU. The command statements are then grouped for efficient processing on the hardware. For example, each group may rely on the same GPU state vector so that all the command statements are organized by GPU state. Once the command statements are organized into group, each group may be committed to the hardware and rendered into a buffer memory that is not the frame buffer. Finally, the various results may be composited into the frame buffer for display.
Some embodiments of the invention contemplate a high level graphics framework to receive graphic requests from an application. The graphics request is analyzed by the high-level framework and sorted into groups of command statements for execution. The command statements are sorted to cause the most efficient processing by the underlying hardware and the groups are submitted separately to a GPU. Submission to the GPU may employ a low-level standard library that facilitates close control of the hardware functionality. In this way, standard frameworks may be employed to render graphics that are no pre-determined; and the rendering takes place in a manner that minimizes CPU work (e.g. fewer GPU state changes), adds parallelism and saves power.
This disclosure pertains to systems, methods, and computer readable media to improve the operation of graphics systems. It also pertains to a variety of architectures for design and/or operation of a graphics system starting with an application program and extending to the presentation of visual content in the form of pixels or otherwise. In general, many embodiments of the invention envision a reorganization of on-the-fly graphics program manipulations. In one or more embodiments, the reorganization may use command buffers to group graphics programming portions into groups for efficient execution. Efficiencies may be achieved simply by avoiding system or GPU state changes and/or by ordering groups for execution in a way that prevents unnecessary work by the CPU and other system hardware.
In the following description, for purposes of explanation, numerous specific details are set forth in order to provide a thorough understanding of the disclosed concepts. As part of this description, some of this disclosure's drawings represent structures and devices in block diagram form in order to avoid obscuring the novel aspects of the disclosed concepts. In the interest of clarity, not all features of an actual implementation are described. Moreover, the language used in this disclosure has been principally selected for readability and instructional purposes and may not have been selected to delineate or circumscribe the inventive subject matter, leaving resorting to the claims as a potential necessity to determine such inventive subject matter. Reference in this disclosure to “one embodiment” or to “an embodiment” or “embodiments” means that a particular feature, structure, or characteristic described in connection with the invention is included in at least one embodiment of the disclosed subject matter, and multiple references to “‘one embodiment” or “an embodiment” should not be understood as necessarily all referring to the same embodiment.
It will be appreciated that, in the development of any actual implementation (as in any software and/or hardware development project), numerous decisions must be made to achieve the developers' specific goals (e.g., compliance with system- and business-related constraints), and that these goals may vary from one implementation to another. It will also be appreciated that such development efforts might be complex and time-consuming, but would nonetheless be a routine undertaking for those having the benefit of this disclosure and being of ordinary skill in the design and implementation of computing systems and/or graphics systems.
Exemplary Hardware and Software
The inventive embodiments described herein may have implication and use in and with respect to all types of devices, including single- and multi-processor computing systems and vertical devices (e.g., cameras, gaming systems, appliances, etc.) that incorporate single- or multi-processing computing systems. The discussion herein is made with reference to a common computing configuration that may be discussed as a software development system or an end user system. This common computing configuration may have a CPU resource including one or more microprocessors. This discussion is only for illustration regarding sample embodiments and is not intended to confine the application of the invention to the disclosed hardware. Other systems having other known or common hardware configurations (now or in the future) are fully contemplated and expected. With that caveat, a typical hardware and software operating environment is discussed below. The hardware configuration may be found, for example, in a server, a workstation, a laptop, a tablet, a desktop computer, a gaming platform (whether or not portable), a television, an entertainment system, a smart phone, a phone, or any other computing device, whether mobile or stationary.
Referring to
Returning to
Processor 105 may execute instructions necessary to carry out or control the operation of many functions performed by system 100 (e.g., evaluation, transformation, and graphics work including compilation of graphics programs). Processor 105 may, for instance, drive display 170 and receive user input from user interface adapter 135 or any other user interfaces embodied by a system. User interface 135, for example, can take a variety of forms, such as a button, a keypad, a dial, a click wheel, a keyboard, a display screen, and/or a touch screen. The user interface items or widgets may be generated by the graphics hardware 120 in real time as a user interacts with the interface. Processor 105 may be any type of computing device such as one or more microprocessors working alone or in combination with GPUs, DSPs, and/or system-on-chip devices such as those found in mobile devices. Processor 105 may include one or more dedicated GPUs or graphics subsystems that accept program instructions to create or alter display information such as pixels. In addition, processor 105 may be based on reduced instruction-set computer (RISC) or complex instruction-set computer (CISC) architectures or any other suitable architecture and may include one or more processing cores. Graphics hardware 120 may be special purpose computational hardware for processing graphics and/or assisting processor 105 in performing computational tasks. In some embodiments, graphics hardware 120 may include CPU-integrated graphics and/or one or more programmable GPUs.
Various embodiments of the invention may employ sensors, such as cameras. Cameras and like sensor systems may include auto-focus systems to accurately capture video or image data ultimately used to interpret user intent or commands. Since the motion of the user may be based upon subtle activity in small regions in the captured images (e.g., hands, fingers, face, mouth, brow etc.) the autofocus system may be used to separately focus on multiple regions of the image in order to access better information.
Returning to
Output from the sensors 125 may be processed, at least in part, by processors 105 and/or graphics hardware 120, and/or a dedicated image processing unit incorporated within or without system 100. Information so captured may be stored in memory 110 and/or storage 115 and/or any storage accessible on an attached network. Memory 110 may include one or more different types of media used by processor 105, graphics hardware 120, and sensors 125 to perform device functions. Storage 115 may store data such as media (e.g., audio, image, and video files); metadata for media; computer program instructions; and other software; including database applications (e.g., a database storing avatar frames), preference information, device profile information, and any other suitable data. Memory 110 and storage 115 may be used to retain computer program instructions or code organized into one or more modules in either compiled form or written in any desired computer programming language. When executed by, for example, processor 105, such computer program code may implement one or more of the acts or functions described herein (e.g., implementing graphics frameworks and/or facilitating the graphics rendering function).
Client computers 215 (i.e., 215A, 215B, and 215C), which may take the form of any smartphone, gaming system, tablet, computer, set top box, entertainment device/system, television, telephone, communications device, or intelligent machine, including embedded systems, may also be coupled to networks 205, and/or data server computers 210. In some embodiments, network architecture 210 may also include network printers such as printer 220 and storage systems such as 225, which may be used to store multi-media items or other data that are referenced herein. To facilitate communication between different network devices (e.g., data servers 210, end-user computers 215, network printer 220, and storage system 225), at least one gateway or router 230 may be optionally coupled therebetween. Furthermore, in order to facilitate such communication, each device employing the network may comprise a network adapter circuit and related software. For example, if an Ethernet network is desired for communication, each participating device must have an Ethernet adapter or embedded Ethernet-capable ICs. Further, the devices may carry network adapters for any network in which they might participate (including, but not limited to, PANs, LANs, WANs, and cellular networks).
As noted above, embodiments of the inventions disclosed herein include software. As such, a description of common computing software architecture is provided as expressed in a layer diagram in
Returning to
Referring again to
Above the O/S services layer 385 is an Application Services layer 380, which includes Sprite Kit 361, Scene Kit 362 Core Animation 363, and Core Graphics 364. The O/S services layer represents higher-level frameworks that are commonly directly accessed by application programs. In some embodiments of this disclosure the O/S services layer may include graphics-related frameworks that are high level in that they are agnostic to the underlying graphics libraries (such as those discussed with respect to layer 385). In such embodiments, these higher-level graphics frameworks are meant to provide developer access to graphics functionality in a more user/developer-friendly way and to allow developers to avoid work with shading and graphics primitives. By way of example, Sprite Kit 361 is a graphics rendering and animation infrastructure made available by Apple Inc. Sprite Kit 361 may be used to animate textured images, or “sprites.” Scene Kit 362 is a 3D-rendering framework from Apple Inc. that supports the import, manipulation, and rendering of 3D assets at a higher level than frameworks having similar capabilities, such as OpenGL. Core Animation 363 is a graphics rendering and animation infrastructure made available from Apple Inc. Core Animation 363 may be used to animate views and other visual elements of an application. Core Graphics 364 is a two-dimensional drawing engine from Apple Inc. Core Graphics 365 provides 2D rendering for applications.
Above the application services layer 380, there is the application layer 375, which may comprise any type of application program. By way of example,
In evaluating O/S services layer 385 and applications services layer 380, it may be useful to realize that different frameworks have higher- or lower-level application program interfaces, even if the frameworks are represented in the same layer of the
With reference again to
Real Time Display of Content that is not Pre-Determined
As discussed above, if displayable content is pre-determined, as in the case of many gaming programs, then there is a significant opportunity for pre-rendering techniques and management that allow the use of more complex and resource intensive graphics at runtime. However, if the displayable content is not pre-known to the graphics system and/or to the origin application program, there is limited latency available for processing a graphics request and committing the result to the screen. With reference to
With reference to
As described above, when the graphics are not pre-known to the graphics system, there is typically no pre-rendering performed and little organization of the rendering task beyond that represented in the screen graph. For example, when the graphics processing software walks the render tree 430, each node (or renderable item within a node) may be rendered in the order that it is encountered. Thus, for example, node 430A may be rendered prior to node 430B, which may be rendered prior to node 430C (note that, in reality, many implementations may actually begin at the leaf node and work back to the root). By ordering the rendering passes as dictated by the order of the scene graph, the first nodes may be very quickly rendered, but subsequent nodes may suffer some latency due at least to the necessary state changes for the graphics hardware (e.g., the set up and tear down of the GPU for each state required during the walk of the scene graph). GPU state changes are costly in terms of system resources, including both time and energy.
Referring now to
The ability to control the GPU closely through a published low-level interface provides advantages that may facilitate a more orderly rendering path for real-time rendering and still allow applications to use a high-level published framework to interface with a system's graphics capabilities. In this respect, referring to
In some embodiments of the disclosure, for each graphic surface encountered while descending the scene graph, a GPU command buffer may be allocated. The command buffer may be populated with the correct drawing (e.g., triangles), in the correct order according to the scene graph of all the drawing associated with that surface. In practice, this may involve combinations of vertex pipeline states, vertex data, and textures. For example, a command may be “draw the icon of the home button using two triangles at a designated location using pipeline state 13,” which is a combination of vertex shader, fragment shader, blend mode, and GPU index O. Thus, in these embodiments, the GPU is being directed regarding exactly how to draw the contents of a particular texture. The commands for this drawing may be encoded into the command buffer for the appropriate surface and sorted for most efficient execution.
Varying embodiments of the invention may sort GPU commands (regardless of language) in a manner that provides for easier or more efficient execution. For example, the commands may be sorted according to the required GPU state vector. In this manner, each command buffer may aggregate commands associated with a single GPU state vector such that a reduced number of GPU state changes may be necessary. Furthermore, in certain embodiments, the sequence of submission for multiple command buffers may be arranged to make state changes easier (e.g., by requiring fewer aspects of a state vector to be changed). Thus, tasks requiring a common GPU state may be aggregated (e.g., generating all blurs together, color space transformation, or blending).
In other embodiments, the command sorting may alternatively or additionally contemplate multiple processing resources (e.g., GPUs). Thus, in these embodiments, based upon either the processing task and/or the required GPU state, some commands may be placed in a command buffer sorted for different GPU attributes, such as a higher-power or higher-efficiency. For example, if a system may choose between high-power and high-efficiency GPUs, tasks that require or benefit from higher performance (e.g., to reduce latency) may be sorted to command buffers for the high-power GPU, while tasks requiring less performance may be sorted to command buffers for the high-efficiency GPU. Furthermore, for each applicable GPU, the commands may be further sorted according to required GPU state (i.e., in order to minimize GPU state transitions). In yet other embodiments, command buffers may be sorted based upon the graphic surface, where each command buffer holds commands pertaining to a single graphic surface or a part thereof. In yet other embodiments: commands may be sorted based upon the system state, for example battery life and demand (e.g., more commands sorted to the high efficiency GPU when the battery is below a threshold charge level); commands may be sorted based upon user settings, such as settings for battery life, system temperature, graphics performance, etc.; commands may be sorted based upon sensor output, for example if ambient light is high or backlighting is a factor, then the level of graphics performance may be increased by sorting more commands to a high power GPU; commands may also be sorted to allow for multiple commands to be encoded simultaneously on a multi-CPU system (e.g. and then re-ordered later); commands may also be sorted to allow for multiple commands to be encoded logically simultaneously on a multi-threaded system (e.g. and then re-ordered later); commands may be sorted to decrease latency (to the screen) for one or more particular drawing commands; or, commands may be sorted to improve overall throughput of a group (e.g. a prioritized group) of drawing commands or all drawing command.
After a certain amount of commands are sorted, the command buffers (525, 535, 540, and 545) may be committed for rendering. In many embodiments of the disclosure, the command buffers may be rendered to graphic buffers 550, which represent any suitable memory other than the command buffer. This allows an enter scene graph to be rendered into memory prior to one or more subsequent rendering passes and/or compositing into the frame buffer 555. Other embodiments of the disclosure may provide for rendering directly from the command buffers to the frame buffer.
Some embodiments of the disclosure may provide for intentionally choosing the order of rendering each command buffer. The order may be based upon the ease of GPU state change or any other influential factor, such as the size of a command buffer and the need to free command buffer memory or the operational condition of the GPU (e.g., temperature). In some embodiments, command buffers are populated in an order based (at least in part) upon CPU efficiency (e.g., best use of the CPU resources, potentially including multiple cores). Similarly, once the command buffers (or at least two of the command buffers) are populated, they may be submitted to the GPU resources (e.g. including multiple GPUs) in an order most efficient for the GPU(s), for example allowing more parallelism. Thus, some embodiments optimize CPU efficiency in populating the command buffers and then rendering efficiency (e.g. a rendering correct order) in submitting the command buffers for rendering.
As noted above, some embodiments of the disclosure may contemplate sorting commands into command buffers according to a destination hardware device such as a GPU.
Differing embodiments of the disclosure contemplate committing each command buffer under differing circumstances. In some embodiments, a command buffer may be committed only after a scene graph has been completely walked/evaluated. In other embodiments, a command buffer may be committed when there are no further commands from the scene graph representing a certain GPU state vector (or when the software believes there is a high probability of the same). Likewise, a command buffer may be committed when there are no further commands for a certain GPU (or when the software believes there is a high probability of the same). Moreover, a command buffer may be committed when, for a certain GPU that is the target of the command buffer, there are no further commands associated with a specific GPU state vector (or when the software believes there is a high probability of the same). In addition, command buffers may be committed based upon their size measured either in the memory they consume or the size of the processing task they represent. Finally, any combination of the foregoing reasons may be used to decide when to commit a command buffer.
Exemplary Process
Referring to
In many embodiments of the disclosure, the received graphics request may be a real time request, meaning the graphic is for immediate display on a display element of a host system. In other words, the pre-rendering performed as part of the process of
Referring again to
Referring again to
Referring again to
Referring again to
If at 625 there is a decision to commit the command buffer for rendering, then at 630 the target GPU may be set up for rendering the command buffer. For example, if the state of the target GPU requires alternation, those alterations may be made at 630.
Once the hardware is prepared at 630, the command buffer may be committed to render at 635. As discussed above, many embodiments of the disclosure may render to memory buffers but not immediately to the frame buffer. This type of deferred rendering or compositing allows the graphics system to wait for a desired quantum of pre-rendering to take place before compositing and/or submitting to the frame buffer for display. Importantly, in varying embodiments and through the use of high-level or low-level frameworks, the control of this delay may be either placed in the hands of the application developer or, perhaps more conveniently, automatically handled by a high-level framework. For example, a high-level framework may elect to organize rendering by generating all lighting information together, and/or by generating all depth information together, and/or by drawing all trees together using a common state vector, and/or by drawing all rocks together using a common state vector, etc. This organization by the high-level framework may occur even though the graphic request is for real time presentation and the scene graph presents the information in an arbitrary or inconvenient order. After organizing and grouping the commands, the high-level framework may submit the command buffers for rendering through a low-level framework as discussed above.
Referring again to
Referring again to
It is to be understood that the above description is intended to be illustrative, and not restrictive. The material has been presented to enable any person skilled in the art to make and use the invention as claimed and is provided in the context of particular embodiments, variations of which will be readily apparent to those skilled in the art (e.g., many of the disclosed embodiments may be used in combination with each other). In addition, it will be understood that some of the operations identified herein may be performed in different orders. The scope of the invention, therefore, should be determined with reference to the appended claims, along with the full scope of equivalents to which such claims are entitled. In the appended claims, the terms “including” and “in which” are used as the plain-English equivalents of the respective terms “comprising” and “wherein.”
Begeman, Nathaniel C., Gies, Sean M., Pangborn, Andrew M.
Patent | Priority | Assignee | Title |
10692169, | Sep 28 2018 | Apple Inc. | Graphics driver virtual channels for out-of-order command scheduling for a graphics processor |
10713747, | Jun 08 2018 | Honeywell International Inc. | System and method for distributed processing of graphic server components |
10719303, | Jun 07 2015 | Apple Inc. | Graphics engine and environment for encapsulating graphics libraries and hardware |
11036559, | Nov 06 2018 | Samsung Electronics Co., Ltd. | Graphics processor and graphics processing method based on subdivided states |
Patent | Priority | Assignee | Title |
8537169, | Mar 01 2010 | Nvidia Corporation | GPU virtual memory model for OpenGL |
8675000, | Nov 07 2008 | GOOGLE LLC | Command buffers for web-based graphics rendering |
20130057563, | |||
20140043342, | |||
20140184623, | |||
20150199788, |
Executed on | Assignor | Assignee | Conveyance | Frame | Reel | Doc |
Apr 25 2016 | BEGEMAN, NATHANIEL C | Apple Inc | ASSIGNMENT OF ASSIGNORS INTEREST SEE DOCUMENT FOR DETAILS | 038592 | /0528 | |
Apr 25 2016 | GIES, SEAN M | Apple Inc | ASSIGNMENT OF ASSIGNORS INTEREST SEE DOCUMENT FOR DETAILS | 038592 | /0528 | |
Apr 25 2016 | PANGBORN, ANDREW D | Apple Inc | ASSIGNMENT OF ASSIGNORS INTEREST SEE DOCUMENT FOR DETAILS | 038592 | /0528 | |
May 13 2016 | Apple Inc. | (assignment on the face of the patent) | / |
Date | Maintenance Fee Events |
May 15 2017 | ASPN: Payor Number Assigned. |
Sep 25 2020 | M1551: Payment of Maintenance Fee, 4th Year, Large Entity. |
Date | Maintenance Schedule |
Jun 13 2020 | 4 years fee payment window open |
Dec 13 2020 | 6 months grace period start (w surcharge) |
Jun 13 2021 | patent expiry (for year 4) |
Jun 13 2023 | 2 years to revive unintentionally abandoned end. (for year 4) |
Jun 13 2024 | 8 years fee payment window open |
Dec 13 2024 | 6 months grace period start (w surcharge) |
Jun 13 2025 | patent expiry (for year 8) |
Jun 13 2027 | 2 years to revive unintentionally abandoned end. (for year 8) |
Jun 13 2028 | 12 years fee payment window open |
Dec 13 2028 | 6 months grace period start (w surcharge) |
Jun 13 2029 | patent expiry (for year 12) |
Jun 13 2031 | 2 years to revive unintentionally abandoned end. (for year 12) |