JP2010507841A - グラフィック処理ユニットにおけるプログラマブルなブレンディング - Google Patents
グラフィック処理ユニットにおけるプログラマブルなブレンディング Download PDFInfo
- Publication number
- JP2010507841A JP2010507841A JP2009533569A JP2009533569A JP2010507841A JP 2010507841 A JP2010507841 A JP 2010507841A JP 2009533569 A JP2009533569 A JP 2009533569A JP 2009533569 A JP2009533569 A JP 2009533569A JP 2010507841 A JP2010507841 A JP 2010507841A
- Authority
- JP
- Japan
- Prior art keywords
- blending
- instruction
- modes
- sequence
- unit
- 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.)
- Granted
Links
- 238000002156 mixing Methods 0.000 title claims abstract description 269
- 238000012545 processing Methods 0.000 title claims abstract description 58
- 238000000034 method Methods 0.000 claims abstract description 21
- 230000006835 compression Effects 0.000 claims abstract description 13
- 238000007906 compression Methods 0.000 claims abstract description 13
- 238000012937 correction Methods 0.000 claims abstract description 4
- 238000004364 calculation method Methods 0.000 claims description 6
- 238000013461 design Methods 0.000 abstract description 3
- 230000006870 function Effects 0.000 description 23
- 238000004891 communication Methods 0.000 description 7
- 238000010586 diagram Methods 0.000 description 6
- 230000005540 biological transmission Effects 0.000 description 3
- 239000003973 paint Substances 0.000 description 3
- 230000000007 visual effect Effects 0.000 description 3
- 238000006243 chemical reaction Methods 0.000 description 2
- 230000000295 complement effect Effects 0.000 description 2
- 238000011960 computer-aided design Methods 0.000 description 2
- 230000001419 dependent effect Effects 0.000 description 2
- 238000013507 mapping Methods 0.000 description 2
- 238000012986 modification Methods 0.000 description 2
- 230000004048 modification Effects 0.000 description 2
- 101000574648 Homo sapiens Retinoid-inducible serine carboxypeptidase Proteins 0.000 description 1
- 102100025483 Retinoid-inducible serine carboxypeptidase Human genes 0.000 description 1
- 230000015572 biosynthetic process Effects 0.000 description 1
- 239000000872 buffer Substances 0.000 description 1
- 239000003086 colorant Substances 0.000 description 1
- 238000011982 device technology Methods 0.000 description 1
- 230000000694 effects Effects 0.000 description 1
- 238000005516 engineering process Methods 0.000 description 1
- 238000003384 imaging method Methods 0.000 description 1
- 238000010295 mobile communication Methods 0.000 description 1
- 238000004088 simulation Methods 0.000 description 1
- 239000007787 solid Substances 0.000 description 1
- 238000003786 synthesis reaction Methods 0.000 description 1
- 238000012546 transfer Methods 0.000 description 1
- 238000012800 visualization Methods 0.000 description 1
Images
Classifications
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06T—IMAGE DATA PROCESSING OR GENERATION, IN GENERAL
- G06T3/00—Geometric image transformations in the plane of the image
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06T—IMAGE DATA PROCESSING OR GENERATION, IN GENERAL
- G06T15/00—3D [Three Dimensional] image rendering
- G06T15/50—Lighting effects
- G06T15/503—Blending, e.g. for anti-aliasing
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06T—IMAGE DATA PROCESSING OR GENERATION, IN GENERAL
- G06T1/00—General purpose image data processing
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06T—IMAGE DATA PROCESSING OR GENERATION, IN GENERAL
- G06T2210/00—Indexing scheme for image generation or computer graphics
- G06T2210/32—Image data format
Landscapes
- Engineering & Computer Science (AREA)
- Physics & Mathematics (AREA)
- General Physics & Mathematics (AREA)
- Theoretical Computer Science (AREA)
- Computer Graphics (AREA)
- Image Generation (AREA)
- Image Processing (AREA)
Abstract
Description
1.α(αsrc,αdst)で表されるアルファブレンディング方程式/関数、
2.c(csrc,cdst,αsrc,αdst)で表されるカラーブレンディング方程式/関数
が関係している。ただし、αsrcはソースアルファ値、αdstはデスティネーションアルファ値、csrcはソースカラー値、cdstはデスティネーションカラー値である。カラー値は、赤(R)、緑(G)、青(B)その他について存在する種々のブレンディングモードのためのアルファおよびカラーブレンディング方程式は、以下で与えられる。
10 Call RCP to compute 1/alpha //Dst pre-format
20 Call MUL to divide alpha out of Dst
30 Call DeGammaLUT to convert compressed color to linear color
40 Op0: Src=alpha*Src, Dst=alpha*Dst //do blending
41 Op1: Instruction for mode-dependent blending equation
・ ・
・ ・
・ ・
4n Opn: Instruction for mode-dependent blending equation
50 Call RCP to compute 1/alpha //Dst post-format
60 Call MUL to divide alpha out of Dst
70 Call GammaLUT to convert linear color to compressed color
80 Call MUL to multiply alpha with Dst and store Dst
命令10〜80は、カラー成分が事前乗算圧縮カラー値として格納されることを前提とする。命令10、20および30はデスティネーションカラー値のプリフォーマット用である。命令10および20は、デスティネーションカラー値からアルファを分ける。命令30は、圧縮カラーをリニアカラーに変換する。命令40から4nは、選択されたブレンディングモードに依存する演算に関するものである。命令50〜80は、結果カラー値のポストフォーマットに関するものである。命令50および60は、非事前乗算カラー値を得るために結果アルファを分割する。命令70は、リニアカラーを圧縮カラーに変換する。命令80は、圧縮カラー値にアルファを乗算し、メモリに最終結果を格納する。カラー値が非事前乗算フォーマットで格納される場合、命令10、20および80は省略されてもよい。カラー成分が圧縮カラー値に代わるリニアカラー値として格納される場合、命令30および70が省略されてもよい。
図5は、ブレンディングを実行する手順500を示す。第1のブレンディングモードのための第1の演算シーケンスについて、第1の命令シーケンスが実行される(ブロック512)。第2のブレンディングモードのための第2の演算シーケンスについて、第2の命令シーケンスが実行される(ブロック514)。第1および第2のシーケンスにおける演算は、第1および第2のブレンディングモードを包含する複数のブレンディングモードのための演算セットからのものである。第1および第2の命令シーケンスは、GPUドライバ/コンパイラ330または他の何らかのユニットによって生成され、シェーダコア350、ブレンディング処理ユニット360または他の何らかのユニットにおいて格納されてもよい。シーケンスは、2つのブレンディングファクタと2つのオペランドとの1つのドット積のための命令を含んでも良く、オペランドの逆数のための命令を含んでも良く、リニアカラーを圧縮カラーに変換する命令、圧縮カラーをリニアカラーに変換する命令などを含んでもよい。
Claims (32)
- 複数のブレンディングモードについて演算セットを実装し、前記複数のブレンディングモードから選択されたブレンディングモードに関して演算シーケンスのための命令シーケンスを受け取り、該選択されたブレンディングモードに従って、ブレンディングを実行するための前記シーケンスにおける各命令を実行する処理ユニットと、
前記処理ユニットに関してオペランドおよび結果を格納する記憶ユニットとを具備する装置。 - 前記複数のブレンディングモードの各々は演算シーケンスのそれぞれに対応付けられ、各演算は、前記演算セットから得られる請求項1の装置。
- 前記処理ユニットは、前記選択されたブレンディングモードについての前記命令シーケンスを実行するブレンディング実行ユニットを具備する請求項1の装置。
- 前記処理ユニットは、インバウンドカラー値のガンマ補正およびアルファスケーリングを実行するプリフォーマットユニットと、アウトバウンドカラー値のガンマ圧縮およびアルファスケーリングを実行するポストフォーマットユニットとをさらに具備する請求項3の装置。
- 処理ユニットは、算術論理演算ユニット(ALU)、逆数ユニット、ガンマルックアップテーブル、デガンマルックアップテーブルの少なくともいずれかを具備する計算ユニットをさらに具備し、前記計算ユニットは、前記ブレンディング実行ユニット、前記プリフォーマットユニット、前記ポストフォーマットユニットで共用される請求項4の装置。
- 前記処理ユニットは、処理されるデータのフォーマットの指示を格納する制御レジスタをさらに具備し、前記プリフォーマットユニットおよび前記ポストフォーマットユニットは、前記制御レジスタからのフォーマット指示に従って、ガンマ補正、ガンマ圧縮、アルファスケーリングを実行する請求項4の装置。
- 前記ブレンディング実行ユニット、前記プリフォーマットユニット、前記ポストフォーマットユニットは、最大3つの異なるスレッド上で並列に動作する請求項4の装置。
- 前記処理ユニットは、前記演算セットにおける少なくとも1つの演算を実行する算術論理演算ユニット(ALU)を具備する請求項1の装置。
- 前記ALUは、前記演算セットにおける演算に関して2つのブレンディングファクタと2つのオペランドのドット積を実行する請求項8の装置。
- 前記記憶ユニットは、複数のレジスタを具備し、前記ドット積のための前記2つのオペランドは、前記複数のレジスタのうちの2つからのものである請求項9の装置。
- 前記ドット積のための前記2つのブレンディングファクタは、前記複数のレジスタのうちの2つから選択可能である請求項10の装置。
- 前記2つのブレンディングファクタは、それぞれ、複数のブレンディングファクタから選択される請求項9の装置。
- 前記ALUは、2つのオペランドと2つのブレンディングファクタとを乗算し、前記演算セットにおける演算に関して2つの基準化されたオペランドを提供する請求項8の装置。
- 前記演算セットは、MAX演算およびMIN演算を具備し、前記ALUは、前記MAX演算により2つのオペランド間で大きい方のオペランドを提供し、前記MIN演算により2つのオペランド間で小さい方のオペランドを提供する請求項8の装置。
- 前記処理ユニットは、オペランドを受け取り、該オペランドの逆数を提供する逆数ユニットを具備する請求項1の装置。
- 前記処理ユニットは、リニアカラー値を受け取って圧縮カラー値を提供するガンマルックアップテーブルを具備する請求項1の装置。
- 前記処理ユニットは、圧縮カラー値を受け取ってリニアカラー値を提供するデガンマルックアップテーブルを具備する請求項1の装置。
- 前記記憶ユニットは、前記命令シーケンスについてオペランドを格納するレジスタを具備し、各命令は、前記レジスタの少なくとも1つに格納された少なくとも1つのオペランドについて演算する請求項1の装置。
- 前記記憶ユニットは、ソースカラーおよびアルファ値ならびに中間結果を格納するソースレジスタと、デスティネーションカラーおよびアルファ値ならびに中間結果を格納するデスティネーションレジスタとを具備する請求項1の装置。
- 前記記憶ユニットは、付加的なソースカラーおよびアルファ値ならびに中間結果を格納する第2のソースレジスタと、前記中間結果を格納する一時的デスティネーションレジスタとをさらに具備する請求項19の装置。
- 各ブレンディング命令は、前記ブレンディング命令についての演算を示す第1のフィールド、第1オペランドを示す第2のフィールド、第2オペランドを示す第3のフィールド、第1のブレンディングファクタを示す第4のフィールド、第2のブレンディングファクタを示す第5のフィールドを具備する請求項1の装置。
- 前記複数のブレンディングモードは、Porter−Duffブレンディングモード、付加的なブレンディングモード、OpenVGにおける付加的なブレンディングモードを具備する請求項1の装置。
- 前記複数のブレンディングモードは、2次元グラフィックスのための複数のブレンディングモード、3次元グラフィックスのための複数のブレンディングモード、または2次元および3次元のグラフィックスのための複数のブレンディングモードを具備する請求項1の装置。
- 複数のブレンディングモードのための演算セットを実装し、前記複数のブレンディングモードから選択されたブレンディングモードに関して演算シーケンスのための命令シーケンスを受け取り、前記選択されたブレンディングモードに従って、ブレンディングを実行するためのシーケンスにおける各命令を実行する処理ユニットと、
前記処理ユニットに関してオペランドおよび結果を格納する記憶ユニットとを具備する集積回路。 - 複数のブレンディングモードのための演算セットを実装し、前記複数のブレンディングモードから選択されたブレンディングモードに関して演算シーケンスのための命令シーケンスを受け取り、前記選択されたブレンディングモードに従ってブレンディングを実行するためのシーケンスにおける各命令を実行するグラフィック処理ユニットと、
前記プロセッサに接続されたメモリとを具備する無線装置。 - 第1のブレンディングモードに関して第1の演算シーケンスのための第1の命令シーケンスを実行すること、
第2のブレンディングモードに関して第2の演算シーケンスのための第2の命令シーケンスを実行することを含み、
前記第1および第2のシーケンスにおける演算は、第1および第2のブレンディングモードを備える複数のブレンディングモードのための演算セットからのものである方法。 - 前記第1の命令シーケンスの実行は、2つのオペランドのと2つのブレンディングファクタのドット積のための命令を実行することを含む請求項26の方法。
- 前記第1の命令シーケンスの実行は、オペランドの逆数のための命令を実行することを含む請求項26の方法。
- 前記第1の命令シーケンスの実行は、リニアカラーを圧縮カラーに変換する命令を実行することを含む請求項26の方法。
- 前記第1の命令シーケンスの実行は、圧縮カラーをリニアカラーに変換する命令を実行することを含む請求項26の方法。
- 第1のブレンディングモードに関して第1の演算シーケンスのための第1の命令シーケンスを生成すること、
第2のブレンディングモードに関して第2の演算シーケンスのための第2の命令シーケンスを生成することを含み、
前記第1および第2のシーケンスにおける演算は、前記第1および第2のブレンディングモードを含む複数のブレンディングモードのための演算セットからのものである方法。 - 第1のブレンディングモードに関して第1の演算シーケンスのための第1の命令シーケンスと、
第2のブレンディングモードに関して第2の演算シーケンスのための第2の命令シーケンスとを含み、
前記第1および第2のシーケンスにおける演算は、前記第1および第2のブレンディングモードを含む複数のブレンディングモードのための演算セットからのものである、命令が格納されたコンピュータ可読媒体。
Applications Claiming Priority (3)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
US11/550,958 US7973797B2 (en) | 2006-10-19 | 2006-10-19 | Programmable blending in a graphics processing unit |
US11/550,958 | 2006-10-19 | ||
PCT/US2007/081952 WO2008049110A2 (en) | 2006-10-19 | 2007-10-19 | Programmable blending in a graphics processing unit |
Publications (2)
Publication Number | Publication Date |
---|---|
JP2010507841A true JP2010507841A (ja) | 2010-03-11 |
JP5180222B2 JP5180222B2 (ja) | 2013-04-10 |
Family
ID=39314863
Family Applications (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
JP2009533569A Active JP5180222B2 (ja) | 2006-10-19 | 2007-10-19 | グラフィック処理ユニットにおけるプログラマブルなブレンディング |
Country Status (9)
Country | Link |
---|---|
US (1) | US7973797B2 (ja) |
EP (1) | EP2082373B1 (ja) |
JP (1) | JP5180222B2 (ja) |
KR (1) | KR101013345B1 (ja) |
CN (1) | CN101523443B (ja) |
CA (1) | CA2665087C (ja) |
ES (1) | ES2399150T3 (ja) |
TW (1) | TWI361394B (ja) |
WO (1) | WO2008049110A2 (ja) |
Families Citing this family (22)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US8638341B2 (en) * | 2007-10-23 | 2014-01-28 | Qualcomm Incorporated | Antialiasing of two-dimensional vector images |
US8149247B1 (en) * | 2007-11-06 | 2012-04-03 | Nvidia Corporation | Method and system for blending rendered images from multiple applications |
KR100948510B1 (ko) * | 2008-04-21 | 2010-03-23 | 주식회사 코아로직 | 하드웨어 방식의 벡터 그래픽 가속기, 그 가속기를 포함한어플리케이션 프로세서 및 단말기, 및 그 프로세서에서그래픽 가속방법 |
US8587594B2 (en) * | 2010-05-21 | 2013-11-19 | International Business Machines Corporation | Allocating resources based on a performance statistic |
US8629867B2 (en) | 2010-06-04 | 2014-01-14 | International Business Machines Corporation | Performing vector multiplication |
US8692825B2 (en) | 2010-06-24 | 2014-04-08 | International Business Machines Corporation | Parallelized streaming accelerated data structure generation |
CN102622772B (zh) * | 2011-01-26 | 2014-08-13 | 华晶科技股份有限公司 | 图层混色方法 |
CN102752519B (zh) * | 2011-05-17 | 2017-04-12 | 新奥特(北京)视频技术有限公司 | 一种二维和三维环境下图形图像混合处理的方法 |
US9349209B2 (en) * | 2011-05-27 | 2016-05-24 | Arm Limited | Graphics processing systems |
US9202308B2 (en) | 2011-12-28 | 2015-12-01 | Think Silicon Sa | Methods of and apparatus for assigning vertex and fragment shading operations to a multi-threaded multi-format blending device |
US9058680B2 (en) | 2011-12-28 | 2015-06-16 | Think Silicon Ltd | Multi-threaded multi-format blending device for computer graphics operations |
US9183609B2 (en) | 2012-12-20 | 2015-11-10 | Nvidia Corporation | Programmable blending in multi-threaded processing units |
KR102194635B1 (ko) | 2014-01-29 | 2020-12-23 | 삼성전자주식회사 | 디스플레이 컨트롤러 및 이를 포함하는 디스플레이 시스템 |
US10002404B2 (en) | 2015-04-15 | 2018-06-19 | Mediatek Singapore Pte. Ltd. | Optimizing shading process for mixed order-sensitive and order-insensitive shader operations |
US11425281B1 (en) * | 2016-09-07 | 2022-08-23 | Google Llc | Color image processing using models of overlapped response spectra for retinal cone cells |
US10067914B2 (en) * | 2016-10-27 | 2018-09-04 | Adobe Systems Incorporated | Techniques for blending document objects |
CN106683033B (zh) * | 2016-12-12 | 2020-09-22 | 中国航空工业集团公司西安航空计算技术研究所 | 一种乱序OpenGL接口处理方法 |
CN106648547A (zh) * | 2016-12-12 | 2017-05-10 | 中国航空工业集团公司西安航空计算技术研究所 | 一种gpu图形状态参数的分布式统一管理方法 |
US10424084B2 (en) * | 2017-04-28 | 2019-09-24 | Adobe Inc. | Digital content rendering that supports alpha is shape (AIS) as part of knockout groups |
US20190179635A1 (en) * | 2017-12-11 | 2019-06-13 | Futurewei Technologies, Inc. | Method and apparatus for tensor and convolution operations |
US12020349B2 (en) * | 2020-05-01 | 2024-06-25 | Samsung Electronics Co., Ltd. | Methods and apparatus for efficient blending in a graphics pipeline |
US12118962B2 (en) * | 2022-09-06 | 2024-10-15 | Apple Inc. | Systems and methods for processing pre-multiplied alpha content |
Citations (11)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
JPH07295547A (ja) * | 1994-04-22 | 1995-11-10 | Hitachi Ltd | 高機能画像メモリlsi及びそれを用いた表示装置 |
JPH08212377A (ja) * | 1994-12-02 | 1996-08-20 | Sony Computer Entateinmento:Kk | 画像情報生成装置及び方法、画像情報処理装置及び方法、並びに記録媒体 |
JPH09325759A (ja) * | 1995-11-22 | 1997-12-16 | Nintendo Co Ltd | 高速高効率3dグラフィックス及びデジタル音声信号処理を提供するコプロセッサを備える高性能低コストビデオゲームシステム |
JPH11286150A (ja) * | 1997-12-22 | 1999-10-19 | Adobe Syst Inc | フレームバッファにおけるグラフィックオブジェクトの混合 |
JP2000510268A (ja) * | 1996-11-22 | 2000-08-08 | エス・スリー,インコーポレイテッド | 3次元グラフィックス補間を実行するための乗算器 |
JP2001005957A (ja) * | 1999-05-06 | 2001-01-12 | Adobe Syst Inc | トランスペアレンシィが存在する場合の色の混合 |
JP2002092631A (ja) * | 2000-01-28 | 2002-03-29 | Namco Ltd | ゲームシステム、プログラム及び情報記憶媒体 |
JP2003515851A (ja) * | 1999-12-06 | 2003-05-07 | エヌヴィディア | グラフィックプロセッサ中の変換モジュール用の方法、装置および製品 |
WO2006034422A2 (en) * | 2004-09-23 | 2006-03-30 | Qualcomm Incorporated | Flexible antialiasing in embedded devices |
JP2006238429A (ja) * | 2005-02-25 | 2006-09-07 | Microsoft Corp | ハードウエア・アクセラレーティド・ブレンド・モード |
JP2006252426A (ja) * | 2005-03-14 | 2006-09-21 | Namco Bandai Games Inc | プログラム、情報記憶媒体及び画像生成システム |
Family Cites Families (16)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US5392393A (en) * | 1993-06-04 | 1995-02-21 | Sun Microsystems, Inc. | Architecture for a high performance three dimensional graphics accelerator |
US5977977A (en) * | 1995-08-04 | 1999-11-02 | Microsoft Corporation | Method and system for multi-pass rendering |
US7057653B1 (en) * | 1997-06-19 | 2006-06-06 | Minolta Co., Ltd. | Apparatus capable of image capturing |
US6100899A (en) * | 1997-10-02 | 2000-08-08 | Silicon Graphics, Inc. | System and method for performing high-precision, multi-channel blending using multiple blending passes |
US6289364B1 (en) * | 1997-12-22 | 2001-09-11 | Adobe Systems, Inc. | Transparency processing in a page description language |
US6466210B1 (en) * | 1997-12-22 | 2002-10-15 | Adobe Systems Incorporated | Blending image data using layers |
US6496187B1 (en) * | 1998-02-17 | 2002-12-17 | Sun Microsystems, Inc. | Graphics system configured to perform parallel sample to pixel calculation |
US6259462B1 (en) * | 1998-12-09 | 2001-07-10 | Ati International Srl | Method and apparatus for texture blending in a video graphics circuit |
KR20010113669A (ko) | 1999-02-17 | 2001-12-28 | 케네쓰 올센 | 병렬적 샘플-픽셀 연산을 수행하도록 구성된 그래픽 시스템 |
US6339432B1 (en) * | 1999-09-24 | 2002-01-15 | Microsoft Corporation | Using alpha values to control pixel blending |
US7483042B1 (en) * | 2000-01-13 | 2009-01-27 | Ati International, Srl | Video graphics module capable of blending multiple image layers |
US7034828B1 (en) * | 2000-08-23 | 2006-04-25 | Nintendo Co., Ltd. | Recirculating shade tree blender for a graphics system |
US6765695B2 (en) * | 2001-09-12 | 2004-07-20 | Seiko Epson Corporation | Color processing architecture and algorithms for color laser printers |
EP1495412B1 (en) * | 2002-03-22 | 2012-11-28 | Alandro Consulting NY LLC | Scalable high performance 3d graphics |
US7590299B2 (en) * | 2004-06-10 | 2009-09-15 | Samsung Electronics Co., Ltd. | Increasing gamma accuracy in quantized systems |
US20060239579A1 (en) * | 2005-04-22 | 2006-10-26 | Ritter Bradford A | Non Uniform Blending of Exposure and/or Focus Bracketed Photographic Images |
-
2006
- 2006-10-19 US US11/550,958 patent/US7973797B2/en active Active
-
2007
- 2007-10-19 CA CA2665087A patent/CA2665087C/en active Active
- 2007-10-19 TW TW096139333A patent/TWI361394B/zh active
- 2007-10-19 JP JP2009533569A patent/JP5180222B2/ja active Active
- 2007-10-19 EP EP07844456A patent/EP2082373B1/en active Active
- 2007-10-19 ES ES07844456T patent/ES2399150T3/es active Active
- 2007-10-19 CN CN200780038371.7A patent/CN101523443B/zh active Active
- 2007-10-19 WO PCT/US2007/081952 patent/WO2008049110A2/en active Application Filing
- 2007-10-19 KR KR1020097007696A patent/KR101013345B1/ko active IP Right Grant
Patent Citations (11)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
JPH07295547A (ja) * | 1994-04-22 | 1995-11-10 | Hitachi Ltd | 高機能画像メモリlsi及びそれを用いた表示装置 |
JPH08212377A (ja) * | 1994-12-02 | 1996-08-20 | Sony Computer Entateinmento:Kk | 画像情報生成装置及び方法、画像情報処理装置及び方法、並びに記録媒体 |
JPH09325759A (ja) * | 1995-11-22 | 1997-12-16 | Nintendo Co Ltd | 高速高効率3dグラフィックス及びデジタル音声信号処理を提供するコプロセッサを備える高性能低コストビデオゲームシステム |
JP2000510268A (ja) * | 1996-11-22 | 2000-08-08 | エス・スリー,インコーポレイテッド | 3次元グラフィックス補間を実行するための乗算器 |
JPH11286150A (ja) * | 1997-12-22 | 1999-10-19 | Adobe Syst Inc | フレームバッファにおけるグラフィックオブジェクトの混合 |
JP2001005957A (ja) * | 1999-05-06 | 2001-01-12 | Adobe Syst Inc | トランスペアレンシィが存在する場合の色の混合 |
JP2003515851A (ja) * | 1999-12-06 | 2003-05-07 | エヌヴィディア | グラフィックプロセッサ中の変換モジュール用の方法、装置および製品 |
JP2002092631A (ja) * | 2000-01-28 | 2002-03-29 | Namco Ltd | ゲームシステム、プログラム及び情報記憶媒体 |
WO2006034422A2 (en) * | 2004-09-23 | 2006-03-30 | Qualcomm Incorporated | Flexible antialiasing in embedded devices |
JP2006238429A (ja) * | 2005-02-25 | 2006-09-07 | Microsoft Corp | ハードウエア・アクセラレーティド・ブレンド・モード |
JP2006252426A (ja) * | 2005-03-14 | 2006-09-21 | Namco Bandai Games Inc | プログラム、情報記憶媒体及び画像生成システム |
Non-Patent Citations (3)
Title |
---|
CSNJ200710054004; 爰島快行, 外3名: '"GPUを用いた動的に変形するベクトルデータのレンダリング"' Visual Computing グラフィクスとCAD 合同シンポジウム2006 予稿集 , 20060622, p.17-22 * |
JPN5009015239; JIANG X ET AL: '"An automatic detergent blending system based on virtual x device driver"' IEEE ICIT '02 vol.2, 20021211, p.810-814, IEEE * |
JPN6011055866; 爰島快行, 外3名: '"GPUを用いた動的に変形するベクトルデータのレンダリング"' Visual Computing グラフィクスとCAD 合同シンポジウム2006 予稿集 , 20060622, p.17-22 * |
Also Published As
Publication number | Publication date |
---|---|
WO2008049110A3 (en) | 2008-07-17 |
CN101523443A (zh) | 2009-09-02 |
TWI361394B (en) | 2012-04-01 |
EP2082373A2 (en) | 2009-07-29 |
ES2399150T3 (es) | 2013-03-26 |
CA2665087A1 (en) | 2008-04-24 |
CN101523443B (zh) | 2016-04-27 |
US7973797B2 (en) | 2011-07-05 |
CA2665087C (en) | 2013-05-14 |
KR20090068250A (ko) | 2009-06-25 |
KR101013345B1 (ko) | 2011-02-10 |
US20080094410A1 (en) | 2008-04-24 |
EP2082373B1 (en) | 2013-01-16 |
JP5180222B2 (ja) | 2013-04-10 |
WO2008049110A2 (en) | 2008-04-24 |
TW200834465A (en) | 2008-08-16 |
Similar Documents
Publication | Publication Date | Title |
---|---|---|
JP5180222B2 (ja) | グラフィック処理ユニットにおけるプログラマブルなブレンディング | |
JP5006412B2 (ja) | 効率的な2d及び3dグラフィックス処理 | |
US8619085B2 (en) | Method and system for compressing tile lists used for 3D rendering | |
US7355603B2 (en) | Filtering unit for floating-point texture data | |
US20150022534A1 (en) | Graphics processor with arithmetic and elementary function units | |
EP1980998A2 (en) | Programmable graphics processing element | |
US20130093766A1 (en) | Interpolation of vertex attributes in a graphics processor | |
WO2007146574A2 (en) | Convolution filtering in a graphics processor | |
US20070268289A1 (en) | Graphics system with dynamic reposition of depth engine | |
EP2831754A1 (en) | Post tesellation edge cache | |
US8619077B1 (en) | Efficient execution of color space processing functions in a graphics processing unit | |
US7274373B1 (en) | System, method and computer program product for providing arbitrary texture filtering | |
US6778188B2 (en) | Reconfigurable hardware filter for texture mapping and image processing | |
US20150054843A1 (en) | Color-correct alpha blending texture filter and method of use thereof | |
US20030164842A1 (en) | Slice blend extension for accumulation buffering | |
JPH04315275A (ja) | コンピュータグラフィックにおける飽和演算をデータプロセッサによって行う方法 | |
CN116778073A (zh) | 阴影渲染方法、装置、设备及计算机可读存储介质 |
Legal Events
Date | Code | Title | Description |
---|---|---|---|
A131 | Notification of reasons for refusal |
Free format text: JAPANESE INTERMEDIATE CODE: A131 Effective date: 20111025 |
|
A601 | Written request for extension of time |
Free format text: JAPANESE INTERMEDIATE CODE: A601 Effective date: 20120124 |
|
A602 | Written permission of extension of time |
Free format text: JAPANESE INTERMEDIATE CODE: A602 Effective date: 20120131 |
|
A601 | Written request for extension of time |
Free format text: JAPANESE INTERMEDIATE CODE: A601 Effective date: 20120227 |
|
A602 | Written permission of extension of time |
Free format text: JAPANESE INTERMEDIATE CODE: A602 Effective date: 20120305 |
|
A601 | Written request for extension of time |
Free format text: JAPANESE INTERMEDIATE CODE: A601 Effective date: 20120323 |
|
A602 | Written permission of extension of time |
Free format text: JAPANESE INTERMEDIATE CODE: A602 Effective date: 20120330 |
|
A521 | Request for written amendment filed |
Free format text: JAPANESE INTERMEDIATE CODE: A523 Effective date: 20120425 |
|
A131 | Notification of reasons for refusal |
Free format text: JAPANESE INTERMEDIATE CODE: A131 Effective date: 20120612 |
|
A601 | Written request for extension of time |
Free format text: JAPANESE INTERMEDIATE CODE: A601 Effective date: 20120912 |
|
A602 | Written permission of extension of time |
Free format text: JAPANESE INTERMEDIATE CODE: A602 Effective date: 20120920 |
|
A521 | Request for written amendment filed |
Free format text: JAPANESE INTERMEDIATE CODE: A523 Effective date: 20121112 |
|
TRDD | Decision of grant or rejection written | ||
A01 | Written decision to grant a patent or to grant a registration (utility model) |
Free format text: JAPANESE INTERMEDIATE CODE: A01 Effective date: 20121211 |
|
A61 | First payment of annual fees (during grant procedure) |
Free format text: JAPANESE INTERMEDIATE CODE: A61 Effective date: 20130110 |
|
R150 | Certificate of patent or registration of utility model |
Ref document number: 5180222 Country of ref document: JP Free format text: JAPANESE INTERMEDIATE CODE: R150 |
|
R250 | Receipt of annual fees |
Free format text: JAPANESE INTERMEDIATE CODE: R250 |
|
R250 | Receipt of annual fees |
Free format text: JAPANESE INTERMEDIATE CODE: R250 |
|
R250 | Receipt of annual fees |
Free format text: JAPANESE INTERMEDIATE CODE: R250 |
|
R250 | Receipt of annual fees |
Free format text: JAPANESE INTERMEDIATE CODE: R250 |
|
R250 | Receipt of annual fees |
Free format text: JAPANESE INTERMEDIATE CODE: R250 |
|
R250 | Receipt of annual fees |
Free format text: JAPANESE INTERMEDIATE CODE: R250 |
|
R250 | Receipt of annual fees |
Free format text: JAPANESE INTERMEDIATE CODE: R250 |
|
R250 | Receipt of annual fees |
Free format text: JAPANESE INTERMEDIATE CODE: R250 |
|
R250 | Receipt of annual fees |
Free format text: JAPANESE INTERMEDIATE CODE: R250 |