Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mesa
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
virgl-es
mesa
Commits
01cc1eeb
Commit
01cc1eeb
authored
May 23, 2008
by
Thomas Hellstrom
Committed by
Jakob Bornecrantz
May 23, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
i915: Make batchbuffers larger.
parent
45fd9ec4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
src/gallium/winsys/dri/intel/intel_batchbuffer.c
src/gallium/winsys/dri/intel/intel_batchbuffer.c
+1
-1
src/gallium/winsys/dri/intel/intel_screen.c
src/gallium/winsys/dri/intel/intel_screen.c
+1
-1
No files found.
src/gallium/winsys/dri/intel/intel_batchbuffer.c
View file @
01cc1eeb
...
...
@@ -65,7 +65,7 @@ intel_batchbuffer_reset(struct intel_batchbuffer *batch)
driBOUnrefUserList
(
batch
->
list
);
driBOResetList
(
batch
->
list
);
batch
->
size
=
4096
;
// ZZZ JB batch->intel->intelScreen->maxBatchSize;
batch
->
size
=
4
*
4
096
;
// ZZZ JB batch->intel->intelScreen->maxBatchSize;
driBOData
(
batch
->
buffer
,
batch
->
size
,
NULL
,
NULL
,
0
);
/*
...
...
src/gallium/winsys/dri/intel/intel_screen.c
View file @
01cc1eeb
...
...
@@ -200,7 +200,7 @@ intelCreatePools(__DRIscreenPrivate * sPriv)
DRM_BO_FLAG_MEM_TT
,
DRM_BO_FLAG_EXE
|
DRM_BO_FLAG_MEM_TT
,
4096
,
//intelScreen->maxBatchSize,
4
*
4
096
,
//intelScreen->maxBatchSize,
1
,
40
,
16
*
16384
,
0
,
intelScreen
->
fMan
);
#endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment